新聞中心

EEPW首頁 > 業(yè)界動態(tài) > 避免 UNIX 和 Linux 中的常見錯誤

避免 UNIX 和 Linux 中的常見錯誤

作者: 時間:2014-11-25 來源: 收藏

您是否遇到過 Execute permission deniedThe parameter list is too long 這樣的錯誤消息?您想知道錯誤的原因嗎?這些是 新手經(jīng)常遇到的錯誤,他們可能不知道如何避免這些問題。本文解釋這些錯誤并提供解決方法。

本文引用地址:http://butianyuan.cn/article/265909.htm

./foo: 0403-006 Execute permission denied.

您編寫或下載了一個新的 shell 腳本,很想試試它。這聽起來不錯,但是在試圖執(zhí)行這個命令時,收到了錯誤消息 ./foo: 0403-006 Execute permission denied。怎么回事兒?這個消息可能源于兩個問題:

  • 您不具有執(zhí)行這個命令的足夠權(quán)限。

  • 對于腳本中定義的 shell,您不具有足夠的權(quán)限,無法告訴 shell 應(yīng)該如何解釋腳本和其中的命令。

您不具有執(zhí)行這個命令的足夠權(quán)限

檢查權(quán)限最簡便的方法是,查看您是作為哪個用戶登錄服務(wù)器的,然后查看 ls –l 的輸出:

# id
uid=5008(cormany) gid=330(atc) groups=110(sales),201(sshd)

# ls -l foo
-rwxrw-r--    1 cormany  atc              75 Jun 10 18:46 foo

根據(jù)這個示例,您是作為用戶 cormany 登錄的,而 shell 腳本的所有者是 cormany,他具有 rwx 權(quán)限(即讀、寫和執(zhí)行)。這沒問題,所以我們考慮下一個可能的原因。

對于腳本中定義的 shell,您不具有足夠的權(quán)限,無法告訴 shell 應(yīng)該如何解釋腳本和其中的命令

我們來看看腳本的內(nèi)部:

# cat foo

#!/bin/ksh.new

echo "This is a just a test"

exit 0

根據(jù)第一行,這個腳本看起來應(yīng)該作為 Korn shell 腳本進行解釋。通過檢查所用的 shell 的權(quán)限,可以確認實際上是否可以使用它:

# ls –l /bin/ksh.new

-r-xr-x---    5 bin      bin          289072 May 27 19:03 /bin/ksh.new

作為 root 用戶,修改要使用的 shell 的文件權(quán)限,然后再試一次:

  1. 切換為 root 用戶:

    # su -
    root's Password:


  2. 確認您現(xiàn)在是 root 用戶而不是原來的用戶:

    # id
    uid=0(root) gid=0(system) groups=2(bin),3(sys),7(security),8(cron),10(audit),11(lp)


  3. 修改文件的權(quán)限:

    # chmod 555 /bin/ksh.new


  4. 確認文件權(quán)限已經(jīng)改變了:

    # ls -l /bin/ksh.new
    -r-xr-xr-x    1 bin      bin          289072 Jun 10 18:45 /bin/ksh.new


  5. 退出 su,恢復(fù)為原來的用戶:

    # exit
    # id
    uid=5008(cormany) gid=330(atc) groups=110(sales),201(sshd)


  6. 再次嘗試執(zhí)行腳本:

    # ./foo
    This is a just a test


好了,問題解決了!

ksh: bar: not found.

您編寫了另一個腳本 bar 并把它保存在 ~cormany/scripts 目錄中。在使用完整路徑或在當前工作目錄 (~cormany/scripts) 中執(zhí)行這個腳本時,它工作正常;但是,由于某種原因,如果在另一個目錄中只輸入腳本名,就無法運行它:

# pwd
/home/cormany/scripts

# /home/cormany/scripts/bar
This is another test

# ./bar
This is another test

# cd

# pwd
/home/cormany

# barksh: bar:  not found.

一切正常,只是無法從另一個目錄運行這個腳本。這樣的錯誤消息通常有三種情況:

  • 對于試圖執(zhí)行的文件,您沒有權(quán)限。

  • 文件不存在或不在您認為的目錄中。

  • 文件存在而且在預(yù)期的位置,您對這個文件也有足夠的權(quán)限。

對于試圖執(zhí)行的文件,您沒有權(quán)限

您知道不是這個原因,因為在提供完全限定的路徑時或在命令目錄中時能夠執(zhí)行這個腳本。如果不能排除這種可能性,檢查文件權(quán)限應(yīng)該有助于發(fā)現(xiàn)問題的原因:

# ls -la ~cormany/scripts
total 56
drwxr-xr-x    2 cormany  atc             512 Jun 12 08:30 .
drwxr-xr-x    6 cormany  atc             512 Jun 10 08:21 ..
-rwxr-xr-x    1 cormany  atc              42 Sep 06 16:20 amdc
-rw-rw-rw-    1 cormany  atc             154 Jan 27 23:23 atc
-rwxr-xr-x    1 cormany  atc             206 Aug 04 20:57 atc.2
-rwxr-xr-x    1 cormany  atc              48 Jun 12 08:21 bar
-rwxr-xr-x    1 cormany  atc              87 Feb 22 16:11 pac

執(zhí)行 ~cormany/scripts/atc 命令會失敗,因為這個文件只對用戶、組和其他用戶設(shè)置了讀和寫權(quán)限。只需增加執(zhí)行權(quán)限,即可解決這個問題。

如果無法執(zhí)行另一個目錄中的另一個命令(例如 ~cormany/scripts.old/cujo),那么也應(yīng)該檢查那個文件的權(quán)限:

# ls -l ~cormany/other_scripts/cujo
ls: 0653-345 /home/cormany/other_scripts/cujo: Permission denied.

初看上去,您甚至沒有讀權(quán)限。我們來看看目標目錄,看看是怎么回事兒:

# cd ~cormany/scripts.old/cujo
ksh: /home/cormany/other_scripts: Permission denied.

# ls -l ~cormany/scripts.old/cujo
ls: /home/cormany/scripts.old: The file access permissions do 
    not allow the specified action.
total 0

這里發(fā)生了什么情況?這是另一種形式的權(quán)限錯誤。權(quán)限錯誤不總是出現(xiàn)在文件本身,也可能出現(xiàn)在文件路徑中的目錄上:

# ls -ld ~cormany/scripts.old
d---------    2 cormany  atc             512 Jan 22 08:42 /home/cormany/scripts.old

如果文件本身有足夠的權(quán)限,那么糾正目錄路徑上的權(quán)限應(yīng)該會解決執(zhí)行問題:

# chmod 755 ~cormany/other_scripts
# cd ~cormany/other_scripts
# ls –l cujo
-rwxr-xr-x    1 cormany  atc              48 Jan 26 08:21 cujo

現(xiàn)在,回到原來 ~cormany/scripts/bar 的問題。

文件不存在或不在您認為的目錄中

同樣,使用 ls 命令執(zhí)行快速檢查,應(yīng)該會看到這個文件是否存在:

# ls -l ~cormany/scripts/bar
-rwxr-xr-x    1 cormany  atc              48 Oct 05 08:21 /home/cormany/scripts/bar

如果在您原來認為的目錄中沒有這個文件,就會收到以下消息:

# ls -l ~cormany/scripts/bar
ls: 0653-341 The file /home/cormany/scripts/bar does not exist.

如果您認為這個文件在用戶 cormany 的主目錄中的其他地方,可以用 find 命令搜索它(如果您有足夠的權(quán)限的話):

# find ~cormany -name "bar" -ls
16409    1 -rwxr-xr-x  1 cormany   atc   48 Sep 06 08:06 /home/cormany/atc/bar
590040   1 -rwxr-xr-x  1 cormany   atc   48 Sep 09 08:42 /home/cormany/test/bar

文件存在而且在預(yù)期的位置,您對這個文件也有足夠的權(quán)限

前面成功執(zhí)行時采用的方法是提供完全限定的命令路徑,或者處于命令目錄中并輸入當前工作目錄(即使用 ./)。既然現(xiàn)在不在命令目錄中,也不輸入完整路徑,我們就來檢查一下 PATH 環(huán)境變量的值:

# echo ${PATH}
/usr/bin:/etc:/usr/sbin:/usr/ucb:/bin:/usr/bin/X11:/sbin:/usr/
    java5/jre/bin:/usr/java5/bin:/usr/ushare/bin:/usr/local/bin

目錄 /home/cormany/scripts 不在路徑中。糾正這個問題有兩種方法:

  • 在 PATH 中添加 ~cormany/scripts。盡管很容易執(zhí)行這個修改,但是請記住一點:每在 PATH 變量中添加一個目錄,shell 在搜索命令時就會多搜索一個目錄。如果隨著時間的推移添加了 10 個目錄,那么在 shell 返回無法找到文件的結(jié)果之前,它要多搜索 10 個目錄。如果您確實要這么做,只需執(zhí)行以下命令:

    # export PATH=${PATH}:/home/cormany/scripts
    # echo $PATH
    /usr/bin:/etc:/usr/sbin:/usr/ucb:/bin:/usr/bin/X11:/sbin:/usr/
        java5/jre/bin:/usr/java5/bin:/usr/ushare/bin:/usr/local/bin:/
        home/cormany/scripts

    注意:把路徑添加到用戶的 PATH 變量的開頭通常是不明智。這么做可能導致執(zhí)行不需要的命令。如果您覺得必須把一個路徑放在開頭,一定要謹慎。


  • 把腳本轉(zhuǎn)移(或復(fù)制)到 PATH 變量中已有的目錄中。如果多個用戶可能使用這個腳本,這種解決方案比較好。如果是這種情況,用戶通常把他們的文件放在 /usr/local/bin 中。

ls: 0653-341 The file . does not exist.

您正在 ~cormany/scripts 目錄中工作。突然,這個目錄中的腳本都找不到了,您收到一條奇怪的消息,它說當前工作目錄不再存在:

#  ls -l
total 40
-rwxr-xr-x    1 cormany  atc              42 Sep 06 16:20 amdc
-rw-rw-rw-    1 cormany  atc             154 Jan 27 23:23 atc
-rwxr-xr-x    1 cormany  atc             206 Aug 04 20:57 atc.2
-rwxr-xr-x    1 cormany  atc              48 Jun 12 08:21 bar
-rwxr-xr-x    1 cormany  atc              87 Feb 22 16:11 pac

# ./bar
This is another test

# pwd
/home/cormany/scripts

# ./barksh: ./bar:  not found.

# ls -lls: 0653-341 The file . does not exist.

當出現(xiàn)這種情況時,就說明通過 rm 命令刪除了您原來的工作目錄。僅僅創(chuàng)建一個同名的新目錄不會解決這個問題,因為文件描述符不一樣。

出現(xiàn)這種事故常常是因為您自己在另一個窗口中執(zhí)行了 rm 命令(至少我是這樣)。為了避免這種事故,可以通過 mv 命令修改目錄名。如果修改目錄名,原來目錄中的用戶可以繼續(xù)工作,只是采用不同的目錄名,因為文件描述符仍然是相同的:

#  ls -l
total 40
-rwxr-xr-x    1 cormany  atc              42 Sep 06 16:20 amdc
-rw-rw-rw-    1 cormany  atc             154 Jan 27 23:23 atc
-rwxr-xr-x    1 cormany  atc             206 Aug 04 20:57 atc.2
-rwxr-xr-x    1 cormany  atc              48 Jun 12 08:21 bar
-rwxr-xr-x    1 cormany  atc              87 Feb 22 16:11 pac

# ./bar
This is another test

# pwd
/home/cormany/scripts

同樣,假設(shè)有人在另一個會話中把您正在工作的目錄改為 ~cormany/scripts.20090601。由于只是轉(zhuǎn)移目錄和修改目錄名,您仍然可以繼續(xù)工作:

# ./bar
This is another test

# pwd
/home/cormany/scripts.20090601

./foo: /usr/bin/ls: 0403-027 The parameter list is too long.

一個程序在您的 IBM? AIX? 計算機上已經(jīng)運行了幾個月,沒有出現(xiàn)問題。但是,在這個程序運行時,它每隔幾分鐘在同一個日志目錄中創(chuàng)建文件。文件名以 f.<number>e.<number> 開頭。目錄越來越滿,ls 命令的響應(yīng)時間顯著增加。這是可以理解的,因為目錄中的文件太多了。

又過了幾個月,這個 AIX 程序一直運行,仍然沒有問題?,F(xiàn)在,有了 100,000 個以 f. 開頭的文件和另外 100,000 個以 e. 開頭的文件?,F(xiàn)在,如果您試圖清理這個日志目錄,刪除以 f. 開頭的文件,就會收到以下消息:

# rm ~cormany/logs/f.*
ksh: /usr/bin/rm: 0403-027 The parameter list is too long.

我認為您太久沒有清理文件了。但是,現(xiàn)在還不晚。

在執(zhí)行 delete 等命令時,會在執(zhí)行之前檢查和展開所有參數(shù)。這個示例尋找 ~cormany/logs/f.*,這會展開為 rm 命令的 100,000 個參數(shù)。換句話說,實際上執(zhí)行的并不是 rm ~cormany/logs/f.*,而是 rm ~cormany/logs/f.1 ~cormany/logs/f.2 ~cormany/logs/f.3 … ~cormany/logs/f.100000。

與其他 操作系統(tǒng)一樣,AIX 規(guī)定了可以使用的命令行參數(shù)和環(huán)境變量的長度。在 AIX 中,可以使用 getconf 命令檢查這個值。在 getconf 手冊頁上,應(yīng)該會看到 ARG_MAX

# man getconf
…
  ARG_MAX
    Maximum length, in bytes, of the arguments for one of the exec 
    subroutines, including environment data.
…
# getconf ARG_MAX1048576

這個值說明對于環(huán)境變量和命令行參數(shù)可以使用 1,048,576 字節(jié)??雌饋砟呀?jīng)超過了這個上限。解決這個問題有兩種方法:

  • 使用 smitty chgsys 并修改 ARG/ENV list size in 4K byte blocks 以提高這個值,或者使用 chdev 提高這個值。我不建議在每次遇到這類錯誤時為了圖方便修改系統(tǒng)范圍的參數(shù):這應(yīng)該是最后一招。

  • 不使用帶 100,000 個參數(shù)的 rm 命令(這會執(zhí)行失敗),而是使用 find 命令刪除文件,這會好得多:

    # find ~cormany/logs –name “f.*” –exec rm {} ;

    find 命令在目錄中搜索以 f. 開頭的所有文件,而不是在 shell 命令行中放那么多參數(shù)。然后,find 命令對找到的每個文件執(zhí)行 rm,這樣就會刪除以 f. 開頭的所有文件。



結(jié)束語

讀完本文之后,您應(yīng)該了解了這些常見問題,知道如何快速地解決問題。錯誤可能看起來很簡單,但是在 中您必須解決基本錯誤,才能順利地前進。愿您能夠順利地排除故障!


linux操作系統(tǒng)文章專題:linux操作系統(tǒng)詳解(linux不再難懂)

linux相關(guān)文章:linux教程




關(guān)鍵詞: UNIX Linux Linux操作系統(tǒng)

評論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉