在debian下添加ppa
在ubuntu下 add-apt-repository 命令挺好用。但是debian下默认是不支持的。
- Add script
用vi新建脚本文件
vi add-apt-repository.sh.txt
写入下面内容:
#!/bin/bash
if [ $# -eq 1 ]
NM=`uname -a && date`
NAME=`echo $NM | md5sum | cut -f1 -d" "`
then
ppa_name=`echo "$1" | cut -d":" -f2 -s`
if [ -z "$ppa_name" ]
then
echo "PPA name not found"
echo "Utility to add PPA repositories in your debian machine"
echo "$0 ppa:user/ppa-name"
else
echo "$ppa_name"
echo "deb http://ppa.launchpad.net/$ppa_name/ubuntu lucid main" >> /etc/apt/sources.list
apt-get update >> /dev/null 2> /tmp/${NAME}_apt_add_key.txt
key=`cat /tmp/${NAME}_apt_add_key.txt | cut -d":" -f6 | cut -d" " -f3`
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $key
rm -rf /tmp/${NAME}_apt_add_key.txt
fi
else
echo "Utility to add PPA repositories in your debian machine"
echo "$0 ppa:user/ppa-name"
fi
-
Save this file in /usr/sbin/
cp add-apt-repository.sh.txt /usr/sbin/add-apt-repository
-
Change permissions to execute
chmod o+x /usr/sbin/add-apt-repository
-
Change ownership to root
chown root:root /usr/sbin/add-apt-repository
大功告成,你可以使用add-apt-repository添加ppa源安装更多的软件。
文章参考自:https://blog.anantshri.info/howto-add-ppa-in-debian/