remove $ from commands

This commit is contained in:
j 2014-09-30 14:29:50 +02:00
parent 511858804a
commit ea58ae1c93

View file

@ -2,28 +2,28 @@
1) Install lxc on the host (Ubuntu 12.04 or later): 1) Install lxc on the host (Ubuntu 12.04 or later):
$ sudo apt-get install lxc sudo apt-get install lxc
2) Create a new container, use different names if installing multiple instances: 2) Create a new container, use different names if installing multiple instances:
$ sudo lxc-create -n pandora-dev -t ubuntu -- -r precise sudo lxc-create -n pandora -t ubuntu -- -r precise
3) Install pan.do/ra in container: 3) Install pan.do/ra in container:
$ sudo lxc-start -n pandora-dev sudo lxc-start -n pandora
Now login as ubuntu/ubuntu and run the following commands: Now login as ubuntu/ubuntu and run the following commands:
$ sudo su sudo su
$ apt-get update apt-get update
$ apt-get -y install avahi-daemon curl apt-get -y install avahi-daemon curl
$ cd /root cd /root
$ curl 'https://wiki.0x2620.org/browser/pandora/vm/firstboot.sh?format=txt' > firstboot.sh curl 'https://wiki.0x2620.org/browser/pandora/vm/firstboot.sh?format=txt' > firstboot.sh
$ chmod +x firstboot.sh chmod +x firstboot.sh
$ sed -i s/ubuntu/pandora/g /etc/passwd /etc/shadow /etc/group sed -i s/ubuntu/pandora/g /etc/passwd /etc/shadow /etc/group
$ mv /home/ubuntu /home/pandora mv /home/ubuntu /home/pandora
$ echo "pandora:pandora" | chpasswd echo "pandora:pandora" | chpasswd
$ locale-gen en_US.UTF-8 locale-gen en_US.UTF-8
$ dpkg-reconfigure locales dpkg-reconfigure locales
$ ./firstboot.sh ./firstboot.sh