Re: 有關匯入module,卻沒有device - Linux

Yuri avatar
By Yuri
at 2011-12-09T18:16

Table of Contents

※ 引述《"[email protected]" <[email protected]>, 看板: Linux》之銘言:
No such device 的訊息應該是來自 module it87.ko。
可以:
modprobe -l | grep it87

看看它是否安裝了,以及放在那裡。

--
此為local存檔;
因為groups.google.com可以看得到文章的內容,所以我就幫忙轉貼原本的內容

--
Tags: Linux

All Comments

Re: script執行檔案

Elvira avatar
By Elvira
at 2011-12-09T18:14
※ 引述《and#34;kolmogolovatgmail.comand#34; andlt;kolmogolovatgmail.comandgt;, 看板: Linux》之銘言: 這是 passing command line arguments 的問題, 那就是,如何在 shell script 裡讀取指 ...

Re: 關於抹除資料

Cara avatar
By Cara
at 2011-12-09T18:13
※ 引述《and#34;kolmogolovatgmail.comand#34; andlt;kolmogolovatgmail.comandgt;, 看板: Linux》之銘言: 我假設 /mnt/zero 是你的 mount point,那就是一個 directory. 你不能對一個 mounted d ...

Re: AWK 傳結果到SHELL指定變數

Quanna avatar
By Quanna
at 2011-12-09T18:12
※ 引述《and#34;kolmogolovatgmail.comand#34; andlt;kolmogolovatgmail.comandgt;, 看板: Linux》之銘言: 你忘了說明 $file 是怎麼設定的。 -- 此為local存檔; 因為bs2可以看得到文章的內容,所以我就幫忙轉貼原本的內容 ...

AWK 傳結果到SHELL指定變數

Noah avatar
By Noah
at 2011-12-09T13:15
小弟遇上一個問題 用 ls 列出目錄下所有檔名之後 我要只取其中一個字串並指定到指定變數 我試著用 awk抓出 print第幾列 但是要傳回SHELL變數時 該指定變數echo出來卻總是空白 echo $files | awk and#39;{fn=$1} {printf and#34;%10s\n ...

關於抹除資料

William avatar
By William
at 2011-12-09T12:54
大家好: 如果要抹除硬碟的資料(不是低階格式化),該怎麼做? 目前我的作法,是將硬碟重新分割成一個Partition並mkfs.ext4 -m 0, 然後mount起來,執行以下命令: dd if=/dev/zero of=/mnt/zero bs=4096 讓他寫到滿為止, 想請問: 1.這樣是否就可以完成 ...