ref: How to start Linux in multiuser mode rather than boot directly into XWindows (X11) steps: Log in to the server as root. Type vi /etc/inittab. When inittab opens, using the arrows keys move your cursor down till you see a line that looks like thi…
Z shell’s (zsh) popularity has increased in the last years. I have not moved too zsh yet, but I am going to do that. zsh is not installed in Linux by default, but it can be installed easilly with a package manager: 1. Check if zsh is already installe…
Environment: debian 8 Installing MySQL Reference material: https://linode.com/docs/databases/mysql/how-to-install-mysql-on-debian-8/ sudo apt-get install mysql-server sudo mysql_secure_installation # 进行一些初始化设置 mysql -u root -p Installing the Default…
原文网址:http://blog.csdn.net/longxibendi/article/details/6048231 1.网址: http://www.mjmwired.net 2.比如查看这个 proc.txt ,就在这里能找到. http://www.mjmwired.net/kernel/Documentation/filesystems/proc.txt 内核参数解释全在这里了.不过,也可以下载内核完源代码,从/usr/src/linux/Documentation/proc.tx…
1. 从BIOS到KERNEL BIOS自检->MBR(GRUB)->KERNEL->KERNEL自解压->内核初始化->内核启动 BIOS自检 当电脑开机的时候,电脑会进入BIOS,BIOS的工作主要是侦测电脑的周边配套设备是否工作正常,如CPU的类型.速度.缓存等 主板类型 内存的速度,容量 硬盘的大小,类型和工作模式 风扇速度等 主要是为了检查这些设备在开机的时候是否能通过检测,如果能通过检测,说明电脑可以正常的工作. -------------------------…
#    WELCOME TO SQUID 3.0.STABLE26#    ----------------------------##    This is the default Squid configuration file. You may wish#    to look at the Squid home page (http://www.squid-cache.org/)#    for the FAQ and other documentation.##    The def…
Catalog . Linux attack vector . Grsecurity/PaX . Hardened toolchain . Default addition of the Stack Smashing Protector (SSP): Compiler Flag: GS . Automatic generation of Position Independent Executables (PIEs): System Characteristic + Compiler Flag:…
转载:http://codingstandards.iteye.com/blog/804830 用途说明 hwclock命令,与clock命令是同一个命令,主要用来查询和设置硬件时钟(query and set the hardware clock (RTC)).RTC=Real Time Clock,也就是硬件时钟.在Linux中有硬件时钟与系统时钟等两种时钟.硬件时钟是指主机板上的时钟设备,也就是通常可在BIOS画面设定的时钟.系统时钟则是指kernel中 的时钟.所有Linux相关指令与函…
Linux系统各发行版镜像下载(2014年10月更新),如果直接下载不了,请使用迅雷下载.并且注意,我的下载地址,在 迅雷 里才起作用. 包括Ubuntu,Fedora,SUSE,Red Hat Enterprise Linux,CentOS等. 中国大陆开源镜像站汇总 1.企业贡献: 搜狐开源镜像站:http://mirrors.sohu.com/网易开源镜像站:http://mirrors.163.com/ 2.大学教学: 北京理工大学:http://mirror.bit.edu.cn (I…
. : 关机, 如果将Linux默认运行等级设置为0, 系统将无法启动; -- : 多用户模式, 允许使用网络文件系统, 一般不使用图形界面登陆就是这种模式; -- : 多用户图形界面模式, 该模式下可以启动图形界面; -- 6 : 重启, 如果将Linux默认运行等级设置为0, 系统将无法重启; 运行等级相关命令操作 : -- 查看当前运行级别 : runlevel ; [root@ip28 bin]# runlevel N 3 -- 设置运行等级 : init 3, 就是将运行等级设置为3;…