个人常用的linux命令

查看php安装路径whereis php

screen -S xiaopiao 创建screen
screen -r xiaopiao 进入screen
screen -x xiaopiao 观众看的
Ctrl+a c :在当前screen会话中创建窗口
Ctrl+a w :窗口列表
Ctrl+a n :下一个窗口
Ctrl+a p :上一个窗口
Ctrl+a 0-9 :在第0个窗口和第9个窗口之间切换
退出Ctrl+a d(即按住Ctrl,依次再按a,d)
screen -ls

screen 状态为Attached 连不上:screen -D -r session-id

查看系统位数getconf LONG_BIT
查看系统版本lsb_release -a、cat /etc/issue、cat /etc/redhat-release

last
hostname
vi /etc/sysconfig/network
cut -d : -f 1 /etc/passwd
cut -d : -f 1 /etc/group
rm -rf /var/log/wtmp
history -c

dmesg |grep eth0 网卡速率
smartctl -A /dev/sda 查看通电时间Power_On_Hours
lspci | grep Ethernet 网卡信息
hdparm -i /dev/sda 硬盘信息
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
fdisk -l 硬盘挂载情况

vi
) :光标移至句尾
( :光标移至句首

今天安装apache 2.0.63 make后出现如下错误,
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.0.63/support’
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.0.63/support’
make: *** [all-recursive] Error 1
解决办法
#mv /usr/lib/libm.a /usr/lib/libm.a.bak
#mv /usr/lib/libm.so /usr/lib/libm.so.bak
#mv /usr/lib/libexpat.so /usr/lib/libexpat.so.bak
#ln -s /usr/lib64/libm.a /usr/lib/libm.a
#ln -s /usr/lib64/libm.so /usr/lib/libm.so
#ln -s /usr/lib64/libexpat.so /usr/lib/libexpat.so
成功

cat /usr/local/directadmin/scripts/setup.txt