2014-11-22 48 views
-2

我正在尋找一個命令,在我的顯示器中顯示內核函數的源代碼(例如blk_make_request),而不是在谷歌中查找它們。特別是對於redhat和ubuntu系統。內核例程linux ubuntu和redhat

回答

0

您需要首先獲得Linux源代碼,默認情況下,它在Ubuntu上不可用。

您可以啓用Ubuntu的源代碼庫,但從Github獲得源代碼更容易。

如果你沒有的git:

sudo apt-get install git 

然後使Linux:

git clone [email protected]:torvalds/linux.git # This will take a long time, it's about 1.1 GB 
cd linux 
git grep blk_make_request 

這將告訴你在哪裏看。