(转载)ubuntu下获得命令对应的源码

1439阅读 0评论2009-05-11 linuxmemo
分类:LINUX

    在ubuntu中经常会需要查看一个命令的源代码,比如我想知道ifconfig这条命令是如何实现的,这时我就需要下载ifconfig的源代码,这在ubuntu中是非常方便的。

    test@test-desktop:~$ type ifconfig
    ifconfig is /sbin/ifconfig
    test@test-desktop:~$ sudo dpkg -S /sbin/ifconfig
    net-tools: /sbin/ifconfig
    test@test-desktop:~$ sudo apt-get source net-tools

原文参见:

上一篇:没有了
下一篇:关于interrupt与timer-driven 驱动的整合