Ubuntu Installation :: Best Way To Clone / Transfer OS Across HDD
Dec 23, 2010
What's the best way to transfer across one hdd to another? I want to avoid setting up my kubuntu 10.10 instance again and hoping there's a way to easily clone it across.
View 2 Replies
ADVERTISEMENT
Oct 2, 2010
I have Ubuntu 10.04 installed in my desktop and is working fine. I would like to clone the Ubuntu with all my settings etc to a USB Flsah drive so that I can take it with me during travel.I don't want to reinstall in USB FLASH rather I want asis Desktop Ubuntu in USB FLASH.
View 1 Replies
View Related
Jun 27, 2010
My Ubuntu system drive is starting to throw up S.M.A.R.T. errors. I have two partitions on the drive (/home and /) and grub in the mbr. Is there a way to exactly clone this drive to another one so I don't need to reinstall or re-setup anything?
View 1 Replies
View Related
Dec 3, 2010
My wife's laptop has XP on it, I installed Ubuntu using wubi apparently. I thought I had made a separate partition and made a true dual boot system but I guess I didn't. Is there a way to clone the wubi install to it's own partition and add the boot loader after or am I going to have to do a fresh install and set everything up again? I am surprised that she has taken to Ubuntu as well as she has, I thought she would hate it but she actually prefers it to windows now..
View 2 Replies
View Related
Jan 18, 2011
My HDD crashed (it wasn't completely disastrous, though). I was able to get my Ubuntu 10.10 partition of the disk with dd_rescue. I can see all of the data in the partition and everything. dd_rescue reported that there were no errors.Now, I have a fresh HDD, and I copied the image that I created with Gparted, and turned the boot flag on. I turn my system on, and all I get is a flashing cursor in the corner of the screen.I get the feeling that this would be easy for a seasoned user, but I'm not sure where to go. I originally got some information about cloning partitions here: [URL] But, it doesn't tell you how to reload the image after you make it.
View 2 Replies
View Related
Apr 19, 2011
I often run various computers from my Ubuntu 10.04 USB startup disk. Every now and then, people get interested and want a copy of their own. Since I have installed a few extras (VLC, codecs, flash etc) on the disk, not just the out of the box 10.04, I would like to create a clone of the USB startup disk, to give away. How can it be done?
View 2 Replies
View Related
Jun 25, 2011
I have a couple of beginner questions;I have checked out some source code in a directory, not inside the home directory, using: Code:git clone git://git.videolan.org/ffmpeg.git ffmpeg-gitI moved the folder around (was not originally in the right directory), and now would like to delete it and start from scratch. How can I do it without creating issues with git? (I don't see ffmpeg-git in Synaptic)More generally, what is the best way to delete old folders related to obsolete or malfunctioning software, or even unsuccessful attempts at installing software ? Can I do 'delete' in the file manager? or just sudo rm <folder name> ? Or is there hidden issues?Another related question: When manually installing packages not available in Synaptic, for example, from downloaded tar.gz, what is the recommended directory structure. For example, is it better to use, for example: /home/<program name>/source to unpack the source code/home/<program name>/build to build the software?as opposed to using folders in the root directory? Is there a tutorial on the subject of best practice for directory structure?
View 2 Replies
View Related
Mar 17, 2010
Question:Several months ago I upgraded my hard drive on a dual boot machine (xp & U9.10 - both 64bit) from approx 80gb to 250gb. I chose to use DriveClone from windows to clone the old drive directly to the new drive. Operational everything works fine. the problem is the Ubuntu HD size went from around 10GB to approx 150Gb, but the filesystem only recognizes approx. 10GB as the total available capacity. I just tried to reinstall Ubuntu without reformatting and only recovered a few GB's. GParted reports the proper partition size. Is there any way I can correct this problem? It's not a big issue...I thought I would check here first before I reformatted the partition. The pre-boot disk check ran and reported no errors but the file system is still not seeing the unused GB's.
View 3 Replies
View Related
Apr 2, 2010
I was curious if there is any way to clone my system by simply writing into a file which packages are installed AND deinstalled on the source system.
The reason is that I configured a system which fits me just right (I installed some additional packages and removed some standard packages like OpenOffice...) and was wanting to back it up - even for a newer Ubuntu-Version.
Most of the changes are already gone in /var/log/dpkg.log... so this option does not exist...Does anyone know where Synaptic stores the information which package is installed and which is not? It is possible to view those packages by applying a filter.
View 3 Replies
View Related
Oct 28, 2010
I'm looking to move my 10.04 installation from an 80 GB HD to a 250 GB HD.
Last week, I successfully moved a Windows system from an 80 GB HD to a 320 GB HD using Clonezilla. However, I must have missed a command option, as I wound up with only 80 GB used on the new drive, and the remaining space unused. I used PartedMagic to resize the partition to use the full space, and all is now well.
Back to my Ubuntu move, on the second machine, I currently have three partitions - /, /swap, and /home. I'd like to expand / just a small amount, leave /swap sized as it is, and give most of the drive space to /home (as that is where I am running out of space). I think I have two options:
Option 1: Use Clonezilla to clone the drive (3 partitions), and then use PartedMagic to move/resize the partitions as desired.
Option 2: Use PartedMagic to set up 3 partitions to the sizes I want, then use Clonezilla to copy to the new partitions.
Option 1 seems to be the easier way. But, is there another option, a better way? Perhaps there's a command option in CloneZilla that I'm just not seeing, which would allow me to do the move in one step?
View 7 Replies
View Related
Feb 3, 2011
I have a bunch of computers with the same configuration, so I would like to install Ubuntu only to one master computer and later on just copy the partition layout and the filesystem unto other computers. Previously I was able to simply copy the partition layout (via the sfdisk utility), the filesystem (a simple "cp -a") and install Grub (via script). Now I had to use the parted utility to partition the 2TB drive and Grub2 is the default boot loader.
My questions are now:
1. How do I copy the partition layout from /dev/sda (master) to /dev/sdb (clone)?
2. How do I batch install install Grub2 to the other disk (e.g. /dev/sdb) ?
In Grub 0.97 it used to be something like that:
Code:
# GRUB the disk
grub --no-floppy --batch <<EOF_GRUB
root ($GRUB,0)
setup ($GRUB)
quit
EOF_GRUB .....
In Grub 2 I tried with:
Code:
grub-install --force --root-directory=/mnt/sdb1/ /dev/sdb
Only to get this error: .....
The Grub2 syntax is way different compared to Grub0.97. Yes, I do could use the Grub2-suggested option but since the partition layouts on both partitions are equal, I see little point in setting the BIOS Boot Partition option, since the master computer works without it and I don't remember any error message during the install.
View 9 Replies
View Related
Aug 25, 2011
Installed Ubuntu from an iso and now can boot only from /dev/loop0 need to clone this to /dev/sda, is this possible if so what are the commands.
View 9 Replies
View Related
Jun 1, 2009
I'm new to fedora (still trying it out) but have many years of experience on other distributions -- mostly gentoo. Anyway, I'm wondering if someone can tell me what all is needed to clone a fedora install. I cloned the partitions, updated fstab with real device node entries (removed all the UUID stuff), and modified grub.conf with the same changes (as well as all the normal/misc changes needed in /etc for things like hostname, network, ethx naming, etc). However when I try to boot it complains that it cant find the old UUID.
I thought this might be specified in the initrd but I uncompressed it and couldn't find any reference to the uuid anywhere. Where does fedora keep this UUID information at? Right now I'm just trying to clone a mythdora box to another one but in the past I've configured a single gentoo install and cloned it on dozens of other computers.
View 3 Replies
View Related
Mar 24, 2010
I've got a nice new faster hard drive and want to move my system to it.Is there something that can clone the current drive AND update the menu.lst with the appropriate device ID's so I can just take out the old drive and carry on as before?
View 1 Replies
View Related
Jan 16, 2011
I have a very specific issue that I am having trouble resolving. I have an old laptop and a new laptop with a smaller HDD. I want to copy the windows partition from the new lappy to the old bigger HDD so I have room for Ubuntu. All of my files are on a Maverick install on the old lappy. How can I get all my files and windows to the old HDD and into the new laptop. I am a little stuck on this one because of my limited options.
View 8 Replies
View Related
Feb 9, 2011
I am currently running x86_64 F14. I am replacing the HDD(s) with one SSD and one HDD. What I want to do is a fresh install but pull all of the packages over from current install. I am planning on backing up /home and all of that so I can just rsync it. One of the issues though is that I currently use LVM. LVM does not support TRIM yet for the SSD. So I was just going to use ext4 and an extended partition for all of my filesystems. Can I just make a kickstart file that will have all of my current installed packages in it and pass that to the install? Seems like I remember that from my RHCE class. Sadly I don't use kickstart enough to remember.
View 1 Replies
View Related
Sep 20, 2010
I'm planing to get 4 dedicated, remote servers for my start up, the question I have is: how to do only one installation and then duplicate or clone this installation into all the other machines. I could install those 4 servers manually, but the problem is - we have a lot of things that our application needs, and later there will be more servers. So an automatic way to do that would be better. We are using Debian. Perhaps there's a way to create a "big package" that will contain all of the necessary software in it, then simply require from the hosting provider that all of our servers come with Debian installed, and then manually upload the "big package" and install it?
View 3 Replies
View Related
Apr 14, 2010
I would like to clone an existing desk top installation of Ubuntu Ultimate Edition and run it on my MacBook, can it work? What do I have to do to get it running there?
View 1 Replies
View Related
Aug 10, 2010
Running Squeeze here. I added a new SSD to my system. Root is /dev/sda3 and I want to clone that system to the new SSD on /dev/sdb1 and make it bootable. I tried:
mount /dev/sdb1 /mnt/ssd_root
cp -dpRx / /mnt/ssd_root
then
update-grub
or
grub-install --recheck --root-directory=/mnt/ssd_root /dev/sdb
but to no avail. I cannot get the new system to be bootable and available through Grub. Part of the problem is that I do not know my way around Grub v2 so well, I could probably manage quite well with legacy grub. So, whats the easiest way to clone a system and make it bootable on another partition? Should I be using debootstrap, and importing/exporting the package list to install the same packages on the new system as the old? or is using cp -dpRx to copy the old ok? How do I make the new system boot?
View 9 Replies
View Related
Nov 17, 2009
I'd like to clone a partition, and then restore it to a logical volume. I have all three operating systems at my disposal (Mac, Windows, Linux Live CD) What is the best way to achieve this. The partition I am trying to resize is only 200MB, so I can store it on usb if need be.
View 9 Replies
View Related
Jan 1, 2010
Having a bit of a issue with Debian Squeeze and transferring files to the Sony PSP..Hook up PSP to USB port and Debian mounts it..I go to drag a 125 meg mp4 to video folder..Copy windows takes about 10 seconds to transfer it..Exit USB mode and there is no video there. Go back into USB mode and look at video folder on the PSP memory stick and there is no video..It vanished. From another after copy progress closed I right clicked PSP and unmounted it..
It error-ed saying device was busy and could not unmount..Looking at light on PSP i see memory stick is still being written to..i wait for light to stop flashing..About a minute or so..Then am able to unmount it..Go to PSP video and theres the video ready to be watched. Debian isnt accurately showing the copy progress...Its showing complete when it isnt..I have to watch the light on PSP to know when it is truly finished.
View 3 Replies
View Related
Jan 20, 2010
using Slackware 13.0, and whenever i trasfer my files to USB, like copy or cut and paste, it will show as if file transfered in an instant,like click paste and poof.the whole 1 gig file transferred in one second, and it wont show dialog box of transfer process, and then i have to predict some minutes and wait (till the transfer actually finishes, i have to usually see my USB's transfer indicator light), if i plug out before or my prediction goes wrong, i end up with corrupted files. This aint related to window manager, as same is case for KDE and XFCE tried thunar, konqueror, midnight commander, all of em resulted with same problem.
View 6 Replies
View Related
Jun 5, 2010
Alright I couldn't explain it in the title for this post so I'll try to do my best here. As of right now I'm dual booting windows xp and ubuntu 9.04. Windows is on the c drive and ubuntu is on my g drive. They are both on the same hdd just different partitions. I have another hdd that I would like to install 10.04 onto and transfer over all of my settings (and files if possible) from 9.04 to the new installation of 10.04 on the new drive. Afterwords I'd like to uninstall 9.04 from the g drive and have that part of the partition back to continue storing programs and other files for windows. Basically I want each operating system to have their own hdd but I would like to transfer my settings from 9.04 to 10.04
Is this possible? I don't have MUCH that I don't want to lose on my current ubuntu, my main issue was that it took forever to get the wireless internet router to work and it finally does and I don't want to have to go through that again. I also don't want to lose my sound system settings because that took FOREVER to get working properly, and honestly I don't remember how I did it now, it was so long ago.
So if this is possible a little guidance would be great. If it's not possible let me know, I'll just start over fresh and clean with a new beginning and tinker around until I get everything working again.
View 1 Replies
View Related
May 3, 2011
I have a desktop installation which is Windows 7 and Ubuntu 11.04 as a Wubi installation. I want to fully install Ubuntu on a partition as a dual boot system.Is there a way to retain all the setup I have on the Wubi when i do the install?
View 2 Replies
View Related
Jul 13, 2011
slow usb transfer speeds has been resolved in 11.04 (Natty Narwhal)? I am currently using Lucid and facing the problem of slow usb transfer speeds which has always been there in ubuntu but everything else is running just fine for me so I see no reason to upgrade yet unless the new OS has solved this problem.
View 9 Replies
View Related
Dec 26, 2010
I have a laptop with dual boot Windowz 7 64 bit and Ubuntu 10.04 LTS 64 bit using windows MBR and EasyBCD. I have no issues booting into either. I also have a 500 GB external HDD which has a NTFS partition for backup data and Linux root and swap partitions at the end. I have GRUB installed on the external HDD MBR and can boot into Ubuntu on the external HDD via bios options. I recently bought a larger external HDD 1TB. Now so far I have made same partitions as old external HDD namely NTFS for bakup followed by Linux root and swap partitions. Linux partitions were cloned using disk cloning while on NTFS partition I only copied data. How do I copy the GRUB from old external HDD to new one so that I can boot into my linux on the new external HDD? BTW the new HDD is Western Digital Passport Essential SE, which also has some factory installed image at the start of drive.
View 6 Replies
View Related
Jan 11, 2011
i would like share what i did when i migrate my ThunderBird 3.1.7 including (extensions, calendar, settings, addressbook) windows 7 to ubuntu 10.04. 1. Archive(7zip) the mail database or the thunderbird folder in the windows 7 which is in the location (C:Users(Ur Username)AppDataRoaming) 2. Install the TB on your linux and open it to create the ****.default folder and the profile.ini in the home/.thunderbird/* Note: althought your windows thunderbird archive backup has the ****.default and profile.ini it doesn't work in my case when i replace or put it the the home/.thunderbird/* directory 3. When you open the TB in the first time it will create *****.default and profile.ini, dont replace or delete it as i said above, what you must do is copy all the files or content in the directory of ****.default in the windows 7 backup archive which is in location (/Thunderbird/Profiles/.default/*) to the home/.thunderbird/ all of it but first remove the content of your ******.dafault and now its almost finish 4. Start ur TB and its ok Note: In my case the lightning calendar doesn't sync to google i reinstall my lightning and provider of google extension before it work. I think this is the 5th time i migrate my TB mail from windows xp to 7 to linux..
View 4 Replies
View Related
Feb 19, 2011
I have ubuntu installed on one hard drive (laptop hard drive). The hard drive has some bad sectors on one of the partitons. I have installed a new hard drive and now wan to import the ubuntu installation on the new hard drive. What is the easiest way of doing this? I dont' want to start fresh because I have a lot of custom drivers and settings saved.
View 4 Replies
View Related
Apr 23, 2010
I will be getting a new computer soon, and I would like to transfer Wubi partitions from one computer with Windows to another. (The reason I want to transfer the partitions instead of just making a new installation is because I want to keep EVERYTHING intact and all the files/settings/applications/etc the same.)
View 3 Replies
View Related
Aug 30, 2010
i have a 200gb hard drive and im upgrading to a 1tb hard drive and i want all my stuff like settings and files on my new hard drive whats the best and easiest way to transfer all my stuff from the old hard drive to the new one
View 9 Replies
View Related