Ubuntu

在我的 VPS 上找不到 apt-get?

  • August 31, 2012

今天,我從http://www.frontrangehosting.com購買了一個 Ubuntu 12.04 VPS ,但是當我通過 SSH 訪問它時,我無法使用 apt-get。

[root@vps /]# apt-get install python-software-properties
-bash: apt-get: command not found

編輯:由於某種原因,它找不到 lsb-release

[root@vps /]# cat /etc/lsb-release
cat: /etc/lsb-release: No such file or directory

從您的 shell 提示符下,您似乎擁有 CentOS 或其他一些 Red Hat 派生的發行版,而不是您期望的 Ubuntu。

您可以通過執行來確認這一點:

cat /etc/*-release

並檢查輸出。

當您登錄時,您應該執行:

cat /etc/issue

這是否顯示作業系統?如果不是,我會將郵件發送到您的提供商支持地址 - 他們可能只是給您提供了錯誤的分發。

引用自:https://serverfault.com/questions/421758