我太笨了,但还是决定使用 Ubuntu,所以我付钱请专业人士帮我安装(双启动 11.10 和 Win7)。当我回到家时,我从软件中心获得了很多东西。Skype 没有下载按钮,所以我用谷歌搜索了一下,Ubuntu 帮助告诉我这样做:
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
然后是这个:
sudo apt-get update && sudo apt-get install skype
终端告诉我“这可能有害……”但我认为这是 Ubuntu 语言的意思是“你确定吗?”
现在计算机处于静音状态。
在包目录修复之前无法安装或删除项目,因此想修复它但包操作失败。
“sudo aptitude -f install”-> 未找到命令
Synaptic 包管理器告诉我有两个损坏的包,libc6 和 libc6-dev
所以我这样做:
sudo apt-get update && sudo apt-get upgrade
它告诉我这样做:
sudo apt-get -f install
结果是这样的:
Can't exec "locale": No such file or directory at /usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
Preconfiguring packages ...
dpkg: warning: 'ldconfig' not found in PATH or not executable.
dpkg: error: 1 expected program not found in PATH or not executable.
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)
当我在突触包管理器中修复损坏的包时,我得到了这个:
Preconfiguring packages ...
dpkg: warning: 'ldconfig' not found in PATH or not executable.
dpkg: error: 1 expected program not found in PATH or not executable.
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)
A package failed to install. Trying to recover:
dpkg: warning: 'ldconfig' not found in PATH or not executable.
dpkg: error: 1 expected program not found in PATH or not executable.
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
我想成为一名 Linux 极客,但这比我想象的要难。请帮忙!
答案1
您的安装似乎已损坏
现在最好的办法是从实时 CD 启动并备份文件后,彻底清除并重新安装系统。
答案2
让我们从这个开始:
Skype 在其网站上提供了 Linux 版本。
根据您的机器架构选择32位或64位。
如果这还不够的话......
自 Ubuntu 10.10 以来,Skype 一直可在每个 Ubuntu 官方存储库中使用。
您刚刚添加的存储库可以在软件源中轻松启用。
https://help.ubuntu.com/community/Repositories/Ubuntu
要修复现在损坏的软件包,请运行以下命令:
sudo apt-get install -f && sudo dpkg --configure -a && sudo apt-get update
答案3
在重新安装系统之前,请尝试打开 Synaptic 软件包管理器,下拉“编辑”菜单,选择“修复损坏的软件包”,然后单击绿色勾号。希望这对您有所帮助。如果您没有 Synaptic,请在终端中输入以下命令进行安装:sudo apt-get install synaptic
答案4
尝试 apt-get update 然后 apt-get upgrade,当我遇到这个问题时,这种方法对我很有用