Категории

17 Октябрь 2008 - 22:28Copying a Filesystem between Computers

If you need to transfer an entire filesystem from one machine to another, for example, when you get a new computer, do the following steps.

1) Boot both PCs with any Linux live CD (for example, Knoppix), and make sure they can access each other via the network.

2) On the source machine, mount the partition containing the filesystem to be copied, and start the transfer using netcat and tar:

cd /mnt/sda1
tar -czpsf - . | pv -b | nc -l 3333

3) On the destination machine, mount the partition to receive the filesystem, and start the process:

cd /mnt/sda1
nc 192.168.10.101 3333 | pv -b | tar -xzpsf -

The nc (netcat) command is used for any kind of TCP connections between two hosts. The pv (progress viewer) command is used to display the progress of the transfer.
tar is used to archive the files on the source machine and un-archive them on the destination.

Источник: Linux Journal Issue 175

Комментариев: 1 | Категории: Linux | Оставить комментарий

14 Октябрь 2008 - 11:14Ещё один ИБП – Imperial Digital (IMD-1025 AP)

Вообщем-то у меня уже есть ИБП (APC Back-UPS RS 500), но так сложилось, что он не вытягивает мой основной комп под большой нагрузкой, поэтому я наконец решил купить ещё один в два раза мощнее. Прочесав берлоги опытных людей, я решил взять Powercom IMD-1025 AP:

IMD-1025AP

Раньше я думал, что APC действительно чем-то отличаются от других, думал брать только эту фирму, но меня удивляли большие цены, особенно на 1000VA и выше. Почитав, я увидел, что все пишут, что они просто накручивают на своём брэнде и на самом деле ни чем не лучше других.

В общем, пока поставил на зарядку, надеюсь, что никаких проблем не возникнет.

http://www.powercom.ua/products/Imperial/

Нет комментариев | Категории: Личная | Оставить комментарий