View Single Post
Posts: 3,617 | Thanked: 2,412 times | Joined on Nov 2009 @ Cambridge, UK
#1323
Originally Posted by geekygenes View Post
Then apply each update using the following
Code:
root
cd /home/user/MyDocs
bzip2 -d nameofpackage.tar.bz2
cd /
mount /home /and
cd /and
tar xvf /home/user/MyDocs/nameofpackage.tar
Why are you bind mounting /home under /and? You can just cd /home and extract there instead:
Code:
root
cd /home/user/MyDocs
bzip2 -d nameofpackage.tar.bz2
cd /home
tar xvf /home/user/MyDocs/nameofpackage.tar