Learn how to install partimage with the command sudo apt-get install partimage on Ubuntus.
Ads
Quick installation of partimage:
Step 1: Update system:
sudo apt-get update
Step 2: Install: partimage
Ater updaing the OS run following command to install the packae:
sudo apt-get install partimage
Package Details | |
Package: | partimage |
Version: | 0.6.8-2.2 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.partimage.org |
Description: | backup partitions into a compressed image file Partition Image is a partition imaging utility. It has support for the following file systems: * Ext2/3, the Linux standard * ReiserFS, a journalised and powerful file system * FAT16/32, DOS and Windows file systems * HPFS, IBM OS/2 file system * JFS, journalised file system, from IBM, used on AIX * XFS, another journalised and efficient file system, from SGI, used on Irix * UFS (beta), Unix file system * HFS (beta), MacOS File system * NTFS (experimental), Windows NT, 2000 and XP Only used blocks are copied and stored into an image file. The image file can be compressed in the GZIP/BZIP2 formats to save disk space, and split into multiple files to be copied onto removable media (ZIP for example), burned on a CD-R, etc. . This makes it possible to save a full Linux/Windows system with a single operation. In case of a problem (virus, crash, error, etc.), you just have to restore, and after several minutes, your entire system is restored (boot, files, etc.), and fully working. . This is very useful when installing the same software on many machines: just install one of them, create an image, and restore the image on all other machines. Homepage: http://www.partimage.org |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/admin |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If partimage is not installed on your compter then the command 'dpkg -L partimage' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L partimage Package `partimage' is not installed. Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing partimage:
After system update use the following command to install partimage:
sudo apt-get install partimage
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the partimage from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the partimage following command is used:
sudo apt-get remove partimage
Following command is used to remove the partimage package along with its dependencies:
sudo apt-get remove --auto-remove partimage
This will remove partimage and all its dependent packages which is no longer needed in the system.
Completely removing partimage with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge partimage
or you can use following command also:
sudo apt-get purge --auto-remove partimage
Above command will remove all the configuration files and data associated with partimage package. You can can't recover the delete data, so, use this command with care.