You are not logged in.
Pages: 1
I can't get powerpill to install
I get
[otacon@desktop ~]$ sudo echo -e "\n[xyne-any]\nServer = http://xyne.archlinux.ca/repos/any/n" >>/etc/pacman.conf
bash: /etc/pacman.conf: Permission denied
[otacon@desktop ~]$
Last edited by otacon (2009-02-06 04:42:01)
http://remcycle.net
Cheap Web Hosting and Even Cheaper Domain Registration
Offline
You can't perform redirections like that with sudo. You'll either have to run it directly as root, edit the file manually, or use some type of workaround:
$ sudo sh -c 'echo -e "\n[xyne-any]\nServer = http://xyne.archlinux.ca/repos/any/\n" >> /etc/pacman.conf'
$ echo -e "\n[xyne-any]\nServer = http://xyne.archlinux.ca/repos/any/\n" | sudo tee -a /etc/pacman.conf
Last edited by tdy (2009-02-06 05:25:17)
Offline
thank you that was perfect
http://remcycle.net
Cheap Web Hosting and Even Cheaper Domain Registration
Offline
Pages: 1