1. 程式人生 > >Linux 後臺開發常用命令

Linux 後臺開發常用命令

linux exclude onf 安裝包 word count class span logs

1、automake編譯

autoreconf -isv

./configure

make

2、遠程獲取代碼

rsync -aPvr --exclude=*/log/* *.*.*.*::home/src .

3、建立軟鏈

ln -s ../../../word_segmentor/ word_segmentor

4、建立空文件

dd if=/dev/zero of=/home/src bs=1M count=1000

5、修改用戶

chown -R usr.usr *

6、查看文件,滾動log

tail -f src

7.查看安裝包

rpm -qa
#查看屬於哪個安裝包
yum whatprovides /usr/bin/nm

8.查看工具信息或函數的頭文件等

man -K *

Linux 後臺開發常用命令