Manual Install to Ubuntu 12.04 LTS (32-bit) but no remastersys installed
My notes:
===== install remastersys (backup and restore ubuntu)
http://www.geekconnection.org/remastersys/ubuntu.html
cntrl-alt-t to bring up terminal window
As root: ( issue 'sudo su' in the terminal window prior to the following commands)
Download and apply the repository gpg key:
wget -O - http://www.remastersys.com/ubuntu/remastersys.gpg.key | apt-key add -
(used second time to be sure it worked
wget -O remasterkey.txt http://www.remastersys.com/ubuntu/remastersys.gpg.key
apt-key add remasterkey.txt
)
Add the following line (corresponds to version of Ubuntu) to /etc/apt/sources.list (with gedit)
#Remastersys Precise (12.04 LTS)
deb http://www.remastersys.com/ubuntu precise main
apt-get update
=====
-the apt-key list output:
root@tovli-ubuntu:/home/tovli# apt-key list
/etc/apt/trusted.gpg
--------------------
pub 1024D/437D05B5 2004-09-12
uid Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
sub 2048g/79164387 2004-09-12
...
pub 2048R/5563B350 2011-11-07
uid Tony Brijeski (Remastersys Key) <tb6517@yahoo.com>
sub 2048R/08A60E76 2011-11-07
-the apt-get output:
...
Ign http://www.remastersys.com precise/main Translation-en_US
Ign http://packages.medibuntu.org precise/free TranslationIndex
Ign http://www.remastersys.com precise/main Translation-en
...
Fetched 2,780 B in 6s (429 B/s)
Reading package lists... Done
-permissions on sources list
root@tovli-ubuntu:/home/tovli# ls -al /etc/apt/sources.list
-rw-r--r-- 1 root root 3257 Aug 19 08:38 /etc/apt/sources.list
-content of sources list
...
## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu precise main
deb-src http://extras.ubuntu.com/ubuntu precise main
## Remastersys Precise (12.04 LTS) for backup restore ubuntu package
deb http://www.remastersys.com/ubuntu precise main
--- there is no /etc/remastersys dir, only
root@tovli-ubuntu:/home/tovli# find / remastersys | grep remastersys
/var/lib/apt/lists/www.remastersys.com_ubuntu_dists_precise_InRelease
/var/lib/apt/lists/www.remastersys.com_ubuntu_dists_precise_main_binary-i386_Packages
Ideas?