usb

Tux Icons – An Enlarged Desktop Experience

I just downloaded a great icon theme. Tux is rocked out 61 times over.

Desktop

You can download the icon theme here:

http://gnome-look.org/content/show.php/61+Cute+Tux+Icons?content=117192

Right click on the icons to stretch them. Notice backup and backup2. I will explain next time how these external usb drivers are keeping a daily backup of the entire system.

VirtualBox No iPhone USB Support 1.5.6

VirtualBox LogoThe USB iPhone driver is not currently compatible with VirtualBox. It causes an error that does not allows iTunes to connect to the iPhone. Obviously this is incredibly frusterating for all Linux users that own an iPhone. Luckily I had Windows Vista installed on my laptop and was able to activate the iPhone completely. Then I backed up all my music and videos, installed Ubuntu, cloned by backed-up Windows XP guest OS, installed iTunes, and viola no iPhone support. You’ll get some message like 0xe8000001 or something of the sort when you plug your iPhone in. This is extremely frustrating. There is no Linux support by MAC, and VirtualBox is not resolving this issue in a timely manner. It seems that this has been an issue for some months now; this can easily be observed by the frustration in the VirtualBox forums and others.

USB Hard Drive in RAID1

This concept works just as for an internal hard drive. Although, USB drives seem to not remain part of the array after a reboot, therefore to use a USB device in a RAID1 setup, you will have to leave the drive connected, and the computer running. Another tactic is to occasionally sync your USB drive to the array, and shut down the USB drive after synchronization. Either tactic is effective. You can create a quick script to add the USB partitions to the RAID1. The first thing to do when synchronizing is to add the partition: sudo mdadm --add /dev/md0 /dev/sdb1 I have 4 partitions therefore my script contains 4 add commands. Then grow the arrays to fit the number of devices: sudo mdadm --grow /dev/md0 --raid-devices=3 After growing the array your USB drive will magically sync :) USB is substantially slower than SATA or PATA. Anything over 100 Gigabytes will take some time. My 149 Gigabyte /home partition takes about an hour and a half to synchronize. Once its synced I do not experience any apparent difference in system performance.

VirtualBox VDI – Clonevdi to USB Hard Drive

VDI images should be backed up with the VBoxManage clonevdi tool in order to preserved file system integrity. I myself has made the mistake of copy pasting, and the result is a damaged system with many configuration changes, and files missing. I was able to salvage the contents of the VDI by getting an external ip and using ssh; whewww. To avoid potential backup meltdowns simply use the VBoxManage clonevdi tool:

VBoxManage clonevdi /home/user/.VirtualBox/VDI/example.vdi /media/usbdisk/example.vdi

USB RAID Difficulties

I was trying to add a USB hard drive to my RAID system for backup purposes. I have not been successful. It seems that when the USB hard drive is removed the disk is marked “failed”; this is normal. But when the drive is re-inserted it is labeled differently causing a RAID conflict not removing the original drive label from the MD device. I am not quite sure of the resolution to this; but obviously USB RAID devices have a couple of hurdles to achieve proper system configuration. Also the partitions were not synchronizing properly; the drive was failing during the recovery. In the end I am just going to use the USB hard drive as a standard backup medium. I will continue to research mounting a USB hard drive as a typical internal IDE or SATA. If the USB drive can be mounted as a typical drive there should be no reason for a RAID malfunction; it should operate as a normal hard drive.