不必太緊張,但還是要保持一些緊張的戒愼之心,
免得鬆懈下來,反而把考試搞砸了。
OK!因為工作有點忙,連看書的時間也被壓縮了不少。
不過空閒的時間還是會有的,趕緊來用功吧!
老規矩,你答案我認為對的,就跳過了。
9/8
Which of the following commands copies the contents off all files in the
current directory into the file "allfiles"? (複選)
a. cp * allfiles
b. cat * > allfiles
c. cp * > allfiles
d. cat * >> allfiles
e. cat * allfiles
Ans:b d
把「很多」檔案的內容,複製並集結成「一個」檔案。
在這題答案選項看來,cp這指令是肯定不能達成這個目的的。
因為cp指令可以一次複製很多檔案沒錯,
但它複製很多檔案的方式,是把你要複製的「很多」檔案,複製到「一個」目錄下。
而目錄就是你給cp指令最後的一個引數(argument)。
cp指令它不作合併的動作底!OK!
那我們來看一下cat指令吧,cat是用來把檔案內容丢到螢幕顯示出來。
而cat * 就可以一次看到當下目錄的所有檔案的內容。
嘿嘿!那如果把cat的輸出重新導向的話,
那不就可以達到把「很多」檔案的內容,複製並集結成「一個」檔案囉。
所以呢!b和d就是最有可能的答案了。
哇!題目剛好要複選,那就b d都選吧!
恭喜你,剛好這樣就答對了。
但我還是求證了一下,因為大於和兩個大於意義上是不同的。
由我實機執行的結果,cat * > allfiles和cat * >> allfiles的差異,
是一個大於就單純的把「很多」檔案的內容,複製並集結成「一個」檔案。
而兩個大於,的確也有這個效果,但每個檔案的內容都重複了一次。
就這樣!
You want to compile and install a GNU software package, but you want to
change the default installation target. Which file would you edit? (單選)
a. .config
b. configure
c. Makefile
d. Targets
e. config.h
Ans: c
如果Leo你有常在安裝一些程式、軟體的話,
可能有執行過./configure,然後make,make install。
那個configure是一個shell script,
要讓你執行時定義一些安裝相關的環境變數用的。
但如果有Makefile這個檔案的話,
Makefile是己經把那些安裝相關的環境變數定義好,寫在裡頭的。
如果我的觀念還算對的話,記得Makefile是透過configure執行後才產生,
然後要用來讓make等編譯工具讀取用的。
但可不可以直接改Makefile呢?我就不是很確定了?
不過我答案都選c!
What is the meaning of the following file permission mode of the file foobar? (單選)
-rwsr-xr-x 1 foo bar 12345 Oct 29 14:51 foobar
a. Everybody who executes this file does this under the EUID of root
b. Everybody who executes this file does this under the EUID of foo
c. Everybody who executes this file does this under the GID of bar
d. Everybody who executes this file does this under the EUID 1
e. Everybody who executes this file does this under the GID 1
Ans: b
題目設計在檔案權限屬性的部份,user(擁有者)權限是rws,問我們代表什麼意義?
那個小s是Set UID用的,代表這個foobar檔案,可以被執行!
而且是用擁有者身份執行,也就是foo!
小心!不要與Set GID搞混了。
在 2007/9/11,y_cdlu@tsmc.com
> Dear 國弘兄:
>
> 哈,我是道地的台南人哦,也在台南工作沒錯!
> 你說的TnLug成員我知道,不過我們老師好像不是其中之一
> 我記得他姓黃,在高雄還滿有名的..玩Debian很厲害
>
> 鳥哥的確是個很厲害的老師
> 原本我也是希望由他授課,不過因為他工作的關係
> 比較少開課了,所以才由別的講師教
>
> 我比較少去參考台南講座,而且最近這幾次也都開在台北
> 所以也無緣去囉^^
>
> 嗯..鳥哥的書我也覺得不是針對LPIC所寫
> 牛頭書才是,但由於我只有買鳥哥的書....哈
> 看了三個月滿辛苦的就是...
> 但就像你說的..能看懂,再去做LPIC其實就比較ok了
> 最後幾天有去跟別人借牛頭書來衝一下^^
>
> 不過102的考題,好像網路上比較沒有什麼相關文件可以參考
> 我還在苦惱著該如何準備才好
>
> 真的很不好意思,若我的信件有擔誤到你的時間
> 容我在這裡說聲抱歉
> 週末陪家人是一定要的啦
> 國弘兄不用覺得有什麼不好意思的
> 倒是讓你上班時還「偷閒」為我解答比較抱歉呢!
> 除了上次問的還有一題LILO的..還有下面幾題有點問題,再麻煩你了!
>
> 9/8
> Which of the following commands copies the contents off all files in the
> current directory into the file "allfiles"? (複選)
> a. cp * allfiles
> b. cat * > allfiles
> c. cp * > allfiles
> d. cat * >> allfiles
> e. cat * allfiles
>
> Ans: b . c (我猜的)
>
> You want to compile and install a GNU software package, but you want to
> change the default installation target. Which file would you edit? (單
> 選)
> a. .config
> b. configure
> c. Makefile
> d. Targets
> e. config.h
>
> Ans: 看到有二題寫 c ,一題有 b (滿困惑的)
>
> How can you detect, which PCI devices are connected to your computer?
> (複選)
> a. Using the readpci command
> b. Using the lspci command
> c. Using the getpci command
> d. Using the pci_info command
> e. Using the file /proc/pci
>
> Ans: b . e (我猜的)
>
> What statement about the du-command is true? (單選)
> a. Dump User - backups all files owned by the named user.
> b. Dos Utility - provides different features to handle DOS-filesystems.
> c. Dir User - shows the directorys owned by the named user.
> d. Disk Usage - shows the amount of diskspace used by the named
> directories.
> e. DOS to Unix - changes the named DOS cr/lf textfile architecture into
> the cr Unix architecture
>
> Ans: d (我猜的)
>
> You want your X-server to use an existing fontserver
> foobar.mydomain.com. What file would you edit to get this done? (單選)
> a. /etc/X11/fs.conf
> b. /etc/X11/xfs.conf
> c. /etc/X11/fs/xfs.options
> d. /etc/X11/fontserver
> e. /etc/X11/Xf86Config
>
> Ans: e (我猜的)
>
> What is the meaning of the following file permission mode of the file
> foobar? (單選)
> -rwsr-xr-x 1 foo bar 12345 Oct 29 14:51 foobar
> a. Everybody who executes this file does this under the EUID of root
> b. Everybody who executes this file does this under the EUID of foo
> c. Everybody who executes this file does this under the GID of bar
> d. Everybody who executes this file does this under the EUID 1
> e. Everybody who executes this file does this under the GID 1
>
> Ans: c (我猜的)
沒有留言:
張貼留言