Archive for the 'backup' Category

Keep files at Linux/Windows/Unix synchronized with Unison

Unison is a file-synchronization tool for Unix and Windows. It allows two replicas of a collection of files and directories to be stored on different hosts (or different disks on the same host), modified separately, and then brought up to date by propagating the changes in each replica to the other.

Unison that is available for Linux, Unix and Windows, shares a number of features with tools such as CVS, PRCS, Subversion, BitKeeper, distributed filesystems (e.g. Coda), uni-directional mirroring utilities (such as rsync), and other synchronizers (Intellisync, Reconcile, etc).

This article tells how to sync data between Desktop PC and laptop with Unison.

Keep contacts and calendar/datebook of Motorola Razr V3 saved

Some time ago I wrote about syncing mobile phone contacts and calendar with online service ZYB. Today I’d like to share my experience of Motorola Razr V3 sync by means of this free service. I’d like to mention that advantage of this method is that it doesn’t matter what operating system you use, it can be Linux, Apple Mac or even M$ Window$. All operations are done with any browser you use.

First of all register new account at ZYB or login to existing one at www.zyb.com. After first successful login you’ll be suggested to register your mobile phone model with the online system. Just choose your model in a wide phone models list. In my case I choose Motorola Razr V3.

In order to upload your phone contacts to your contacts and calendar/datebok data to ZYB perform the following operations with your Motorola Razr v3:

1. Go to Menu
2. Go to Connection or connectivity
3. Go to Sync
4. Select New entry
5. Name: ZYB
6. Url: http://sync.zyb.com/
7. Username: your ZYB login
8. Password: your ZYB password
9. Select Data Paths, click Change
10. Address book: contacts
11. Dateboook: calendar
12. Press Done to save
13. Select ZYB from the list and click on Select to start syn

When sync is done you’ll see your contacts at your personal ZYB page. It’s very comfortable to edit them online and then sync with your Razr V3 by performing 13 step of above operations list.

ZYB provides a feature that allows to sync data between many mobile phones you own. Many phone models are supported, so it would be useful to check if it is supported by ZYB before buying it :)

You may also be interested in:
EV-DO Internet access with Ubuntu Linux
Download and convert YouTube video online and offline
Inimitable wallpapers, icons and themes for Linux

Make a copy of virtual machine with Vmware Server

It’s proven to be that during software development process, research activities and etc., using of virtulization is invaluable. In my practice I use Vmware Server, so the next article would be useful.

First of all, we need to find where all our virtual machines are in our system. After small search I’ve found vmware files in /var/lib/vmware/Virtual Machines. There are some set of directories each corresponds to some of your already created virtual machines. In my case I was interested in cloning virtual machine with name db1 to new machine db2 and then to db3.

Continue reading about virtual machines cloning with Vmware Server…

Probably you’re interested also in:
Vmware Server at Ubuntu Feisty 7.04

Move linux to another hard drive (dump, restore, backup)

There are several methods to move running Linux to another hard drive at the same server. But I used Unix dump/restore utility to perform this…

First of all it’s necessary to partition new hard drive in the same way as it’s done with old drive (Linux is running at). I usually use ‘fdisk’ utility. Let’s assume that old drive is /dev/hda and new one is /dev/hdb. To view hda’s partition table please run ‘fdisk -l /dev/hda’ which should show something like this:

Disk /dev/hda: 60.0 GB, 60022480896 bytes
255 heads, 63 sectors/track, 7297 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 * 1 15 120456 83 Linux
/dev/hda2 16 276 2096482+ 82 Linux swap
/dev/hda3 277 7297 56396182+ 83 Linux

After this run ‘fdisk /dev/hdb’ and make the same partitions at it. Interactive mode of fdisk utility is well documented and is very intuitive, so I don’t think it would be difficult to perform partitioning.

After this is done, we should make new filesystems at partitions we’ve created:

mkfs -t ext3 /dev/hdb1
mkfs -t ext3 /dev/hdb3
mkswap /dev/hdb2

When it’s done it’s NECESSARY to mark newly created filesystems as it’s done with old ones. To check filesystem volume name run command ‘tune2fs -l /dev/hda1 | grep volume’ and etc. You’ll see something like this:

Filesystem volume name: /boot

It means that we should mark new hdb1 with label /boot. It can be done by command:

tune2fs -L “/boot” /dev/hdb1

The same should be performed for all partitions except swap one. In my case I should label hdb3 by command:

tune2fs -L “/” /dev/hdb3

At this point new hard drive preparation is finished and we can proceed with moving Linux to it. Mount new filesystem and change directory to it:

mount /dev/hdb1 /mnt/hdb1
cd /mnt/hdb1

When it’s done we can perform moving by command:

dump -0uan -f – /boot | restore -r -f -

And the same with / partition:

mount /dev/hdb3 /mnt/hdb3
cd /mnt/hdb3
dump -0uan -f – / | restore -r -f -

When dump/restore procedures are done we should install boot loader to new HDD. Run ‘grub’ utility and execute in it’s console:

root (hd1, 0)
setup (hd1)
quit

In case everything is done carefully and right (I’ve tested this method by myself) you can boot from new hard drive and have ‘old’ Linux running at new hard drive running.

Good luck!

Mobile phone contacts, calendar and messages online backup

I’m using different mobile phones and it’s very important for me to keep my contact list as well as calendar entries backed up and to be sure that all this data can be restored in case I’ve lost my phone or it’s broken or so…

As it usually seems annoying for me to get phone connected to PC via usb cable, bluetooth or etc. I’m using FREE online backup service ZYB.

By means of this service I regularly synchronize my phone data with online storage and in case if phone is lost or broken I restore contacts and etc. to new phone easily.

To get your cell phone data backed up it’s only needed to register at www.zyb.com, choose phone model, get synchronization settings via sms and synchronize data with online backup storage. It took less than 3 minutes to finish when I used it for the first time!

Very nice service and absolutely free (as beer)!




Pages: 1 2 Next
Friendly Sites:Who is behind Linux Screw?
Aspiring Sysadmin | GeekyBits³ | Bash Cures Cancer | TOTMS
Linux Operating System | Small Linux Deployments | My SysAd Blog
The Danesh Project | ZEPY | Linux config Wiki | Planet Sysadmin
The Sys Admin | {buhay sysad} | a non-geek's linux notes
Linux HOWTOs, Tutorials & Projects with Adam Palmer | LinuxAlt.Com
My name is Artem Nosulchik (artiomix AT gmail DOT com) and I'm Linux/Unix, Cisco systems engineer. The main idea of Linux Screw is to share relevant knowledge, skills and observations over The Web. Here you can find a lot of information related to different Linux distributions, FreeBSD, IOS as well as a other Open Source around staff. Read more ››