linux使用心得(持續更新)

! 查看發行版本信息
lsb_release -a
uname -a
 
如下方法只適合redhat和centos
cat /etc/redhat-release
rpm -q redhat-release
rpm -q centos-release
 
! 關閉SHELL鈴聲
vi /etc/inputrc
將set bell-style none的註釋取消
 
!日期時間修改
修改日期
date -s MM/dd/YYYY
修改時間
date -s HH:mm:ss
 
! 日期時間格式化輸出
date +[格式化輸出符]
例如:
date +%H:%M:%S
17:18:24

!同步系統時間
ntpdate cn.pool.ntp.org;hwclock --systohc
 
! smbmount
使用 mount替代,格式爲cifs
mount -t cifs -o username=xxx.password=xxx //hostname/dir /mnt/dir
也能夠創建別名
alias smbmount='mount -t cifs'
 
! 終端中文設置
yum -y groupinstall chinese-support
 
vi /etc/sysconfig/i18n
LANG="zh_CN.UTF-8"
LC_MESSAGES="en_US.UTF-8"
SUPPORTED="zh_CN.GB18030:zh_CN:zh:en_US.UTF-8:en_US:en"
SYSFONT="latarcyrheb-sun16"
再在PUTTY中將窗口-轉換-假定接收數據的字符集設爲UTF-8
 
!設置DNS的IP
/etc/resolv.conf
nameserver xxx.xxx.xxx.xxx
 
!設置網絡主機名,以及是否容許使用網絡
/etc/sysconfig/network
NETWORKING=yes
HOSTNAME=xxx
 
!設置具體網卡
/etc/sysconfig/network-scripts/ifcfg-eth<0起始的數字>
DEVICE=eth0
BOOTPROTO=static|dhcp
BROADCAST=
IPADDR=
NETMASK=
GATEWAY=
HWADDR=
ONBOOT=yes
MTU=1500
TYPE=Ethernet
 
!記錄主機名與IP對應關係
/etc/hosts
 
! 軟raid5默認須要spare盤,用--force 參數能夠屏蔽掉這個功能
When creating a RAID5 array, mdadm will automatically create a degraded
   array   with   an   extra spare drive.   This is because building the spare
   into a degraded array is in general faster than resyncing the parity on
   a   non-degraded, but not clean, array.   This feature can be over-ridden
   with the --force option.
 
!/etc/passwd字段定義
LoginName:Password:Uid:Gid:UserInfo:Home:Shell
 
!/etc/shadow字段定義
LoginName:Passwd:LastChg:Min:Max:Warn:Inactive:Expire:Flag
 
!/etc/group字段定義
GroupName:Password:Gid:UserList(split by ',')
 
!/etc/gshadow字段定義
GroupName:Password:UserList(split by ',')
 
!強制踢掉在線用戶
經過用戶名踢
pkill -u <name>
 
經過TTY踢
pkill -kill -t <tty name>
 
!egrep不容許使用\{\}
 
!declare命令將變量轉成環境變量,供子進程調用。進程中的環境變量修改,隻影響自身與子進程。
 
!SELINUX開啓時ZendGuardLoader能在PHP命令行環境加載,但沒法在APACHE中加載的解決辦法
execstack --clear-execstack /usr/lib64/php/modules/ZendGuardLoader.so
 
!複製虛擬機啓動後網卡報「Device eth0 does not seem to be present,delaying initialization」
編輯 /etc/sysconfig/network-scripts/ifcfg-eth0,將其中的MAC地址改爲新虛擬機網卡的MAC地址。
rm -f /etc/udev/rules.d/70-persistent-net.rules
重啓系統。
 
! 脫離終端後臺運行shell
nohup ./test.sh &
 
!ubuntu刪除多餘的舊內核
查找已經安裝的內核
dpkg --get-selections |grep linux-image
 
根據狀況刪除舊內核
sudo apt-get remove <內核完整名稱>
 
! 獲取路徑裏文件名與目錄名的方法
basename <路徑>     #獲取路徑裏的文件名
dirname <路徑>     #獲取路徑裏的目錄名,不包含最後的/
 
!ubuntu處理DOS回車
sudo apt-get install tofrodos
fromdos <待轉換爲UNIX回車的文件>
todos <待轉換爲DOS回車的文件>
 
! ubuntu安裝HG
sudo add-apt-repository ppa:tortoisehg-ppa/releases sudo add-apt-repository ppa:mercurial-ppa/releases sudo apt-get update sudo apt-get install mercurial python-nautilus tortoisehg
相關文章
相關標籤/搜索