将 Ubuntu 13.04 转换为 Mac 主题错误

将 Ubuntu 13.04 转换为 Mac 主题错误

我正在跟进本教程并且这个 YouTube 教程

执行此命令时:

sudo apt-get install mac-os-lion-theme mac-os-lion-cursors mac-os-lion-icons

我收到此错误:

Reading package lists... Done
Building dependency tree        
Reading state information... Done 
E: Unable to locate package mac-os-lion-theme 
E: Unable to locate package mac-os-lion-cursors 
E: Unable to locate package mac-os-lion-icons

知道我做错了什么吗?

答案1

我遇到了同样的错误,但通过替换以下内容解决了它:

sudo add-apt-repository ppa:noobslab/themes
sudo apt-get update
sudo apt-get install mac-icons-noobslab
sudo apt-get install mac-ithemes-noobslab

为了游标, 使用:

wget -O mac-cursors.zip http://ubuntuone.com/05qtKEgDaFQ1V1TzNvoub5
sudo unzip mac-cursors.zip -d /usr/share/icons/ && rm mac-cursors.zip
cd /usr/share/icons/mac-cursors
sudo chmod +x install-mac-cursors.sh uninstall-mac-cursors.sh
./install-mac-cursors.sh

事实上,它们看起来比我们的旧方法更好。有关更多详细信息: TechyGiene.com

答案2

存储库是否已添加? sudo add-apt-repository ppa:noobslab/themes需要sudo apt-get update先执行此操作 - 您不能忘记这一点。您可以使用 来验证存储库是否已添加ls /etc/apt/sources.list.d,它将显示所有可用的非标准存储库。

相关内容