linux 小记001

1、linux下比较两个目录的异同

     meld  first_dir  second_dir

2、查看可执行文件的依赖项

   readelf     -d      ./your_exe

3、把自己修改为超级用户

    /etc/group中的admin行,添加就可以了

4、获得指定用户组的GID

     getent    group    your_group | cut -d: -f3

5、当前目录的空间使用情况

    du     -h     --max-depth=1

6、如何知道我的gateway(网关)

    route     -n

 

================================================

http://www.cnblogs.com/wanqieddy/archive/2011/06/09/2076785.html

http://bbs.chinaunix.net/thread-434579-1-1.html

 

你可能感兴趣的:(linux 小记001)