首页 > 代码库 > Linux 后台开发常用命令

Linux 后台开发常用命令

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 后台开发常用命令