Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Ubuntu sudo報錯command not found怎麼辦?

Ubuntu sudo報錯command not found怎麼辦?

日期:2017/1/25 10:43:19      編輯:關於Linux

  Ubuntu系統操作中,在使用sudo的時候出現sudo:source:command not found錯誤提示,遇到這種問題要如何處理呢?下面小編就給大家介紹下Ubuntu系統中報錯sudo:source:command not found的解決方法。

 Ubuntu sudo報錯command not found怎麼辦?

  Ubuntu Server上執行以下命令,可以看到默認打開的文件數限制為1024個。

  $ ulimit -n

  1024

  編輯/etc/profile配置文件,在最後添加一行:

  ulimit -SHn 65535

  要讓配置生效:

  $ sudo source /etc/profile

  sudo: source: command not found

  我們直接執行ulimit -SHn 65535命令又會怎麼樣呢?

  $ ulimit -SHn 65535

  -bash: ulimit: open files: cannot modify limit: Operation not permitted

  $ sudo ulimit -SHn 65535

  sudo: ulimit: command not found

  普通用戶獲得root權限後反而提示找不到命令了,該如何解決這個問題呢?

  $ sudo -s

  # source /etc/profile

  再次執行ulimit,可以看到打開文件的限制數已改為65535了。

  # ulimit -n

  65535

  上面就是Ubuntu解決sudo:source:command not found錯誤的方法介紹了,如果你碰到這個問題,可是嘗試使用本文介紹的方法進行處理,希望對你有所幫助。

Copyright © Windows教程網 All Rights Reserved