<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wiki.ipbrick.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.ipbrick.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Balves</id>
		<title>wiki.IPBRICK.COM - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.ipbrick.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Balves"/>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Special:Contributions/Balves"/>
		<updated>2026-05-13T15:14:04Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.2</generator>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration</id>
		<title>IPBrick Disk migration</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration"/>
				<updated>2015-07-01T10:03:30Z</updated>
		
		<summary type="html">&lt;p&gt;Balves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=&amp;lt;big&amp;gt;'''IPBrick Disk migration'''&amp;lt;/big&amp;gt;=&lt;br /&gt;
&lt;br /&gt;
Apply configuration and save the configurations file to your Desktop.&lt;br /&gt;
&lt;br /&gt;
Just stop the the services you use.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/etc/init.d/asterisk stop&lt;br /&gt;
/etc/init.d/apache2 stop&lt;br /&gt;
/etc/init.d/ejabberd stop&lt;br /&gt;
/etc/init.d/qmail stop&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Execute this command to backup all the data bases.&lt;br /&gt;
&amp;lt;pre&amp;gt;/opt/system/backupSYS/backup_DBs.php &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the IPBrick on the new machine or on the new disk.&lt;br /&gt;
&lt;br /&gt;
Make the rsync command to copy all the data to the new disk,&lt;br /&gt;
Some examples of rsync &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==='''rsync using local machine only, (device attached by usb)'''===&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See the disks on machine&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fdisk -l&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You must have 2 disk sda and sdb&lt;br /&gt;
&lt;br /&gt;
And see the partition table off the two devices. &lt;br /&gt;
&lt;br /&gt;
Then create 2 folders&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /old_home1&lt;br /&gt;
mkdir /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then we need to mount the partitions we need to copy.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mount /dev/sdb7 /old_home1&lt;br /&gt;
mount /dev/sdb8 /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -aAuv /old_home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err &amp;amp;&lt;br /&gt;
rsync -aAuv /old_home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==='''rsync using 2 IPBrick'''===&lt;br /&gt;
----&lt;br /&gt;
EX: IPBrick1 New (192.168.69.199) and IPBrick2 OLD (192.168.69.200)&lt;br /&gt;
&lt;br /&gt;
On machine IPBrick2 open ssh to root&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/ssh/sshusers-allowed&lt;br /&gt;
operator&lt;br /&gt;
root&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
insert the line root on the file.&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync on IPBrick1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* the route password will be prompt to insert.  &lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;/div&gt;</summary>
		<author><name>Balves</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration</id>
		<title>IPBrick Disk migration</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration"/>
				<updated>2015-07-01T09:56:39Z</updated>
		
		<summary type="html">&lt;p&gt;Balves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;'''IPBrick Disk migration'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Apply configuration and save the configurations file to your Desktop.&lt;br /&gt;
&lt;br /&gt;
Just stop the the services you use.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/etc/init.d/asterisk stop&lt;br /&gt;
/etc/init.d/apache2 stop&lt;br /&gt;
/etc/init.d/ejabberd stop&lt;br /&gt;
/etc/init.d/qmail stop&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Execute this command to backup all the data bases.&lt;br /&gt;
&amp;lt;pre&amp;gt;/opt/system/backupSYS/backup_DBs.php &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the IPBrick on the new machine or on the new disk.&lt;br /&gt;
&lt;br /&gt;
Make the rsync command to copy all the data to the new disk,&lt;br /&gt;
Some examples of rsync &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# '''rsync using local machine only, (device attached by usb)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See the disks on machine&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fdisk -l&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You must have 2 disk sda and sdb&lt;br /&gt;
&lt;br /&gt;
And see the partition table off the two devices. &lt;br /&gt;
&lt;br /&gt;
Then create 2 folders&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /old_home1&lt;br /&gt;
mkdir /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then we need to mount the partitions we need to copy.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mount /dev/sdb7 /old_home1&lt;br /&gt;
mount /dev/sdb8 /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -aAuv /old_home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err &amp;amp;&lt;br /&gt;
rsync -aAuv /old_home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# '''rsync using 2 IPBrick'''&lt;br /&gt;
&lt;br /&gt;
EX: IPBrick1 New (192.168.69.199) and IPBrick2 OLD (192.168.69.200)&lt;br /&gt;
&lt;br /&gt;
On machine IPBrick2 open ssh to root&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/ssh/sshusers-allowed&lt;br /&gt;
operator&lt;br /&gt;
root&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
insert the line root on the file.&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync on IPBrick1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* the route password will be prompt to insert.  &lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;/div&gt;</summary>
		<author><name>Balves</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration</id>
		<title>IPBrick Disk migration</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration"/>
				<updated>2015-07-01T09:56:02Z</updated>
		
		<summary type="html">&lt;p&gt;Balves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;'''IPBrick Disk migration'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Apply configuration and save the configurations file to your Desktop.&lt;br /&gt;
&lt;br /&gt;
Just stop the the services you use.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/etc/init.d/asterisk stop&lt;br /&gt;
/etc/init.d/apache2 stop&lt;br /&gt;
/etc/init.d/ejabberd stop&lt;br /&gt;
/etc/init.d/qmail stop&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Execute this command to backup all the data bases.&lt;br /&gt;
&amp;lt;pre&amp;gt;/opt/system/backupSYS/backup_DBs.php &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the IPBrick on the new machine or on the new disk.&lt;br /&gt;
&lt;br /&gt;
Make the rsync command to copy all the data to the new disk,&lt;br /&gt;
Some examples of rsync &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# '''rsync using local machine only, (device attached by usb)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See the disks on machine&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fdisk -l&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You must have 2 disk sda and sdb&lt;br /&gt;
&lt;br /&gt;
And see the partition table off the two devices. &lt;br /&gt;
&lt;br /&gt;
Then create 2 folders&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /old_home1&lt;br /&gt;
mkdir /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Then we need to mount the partitions we need to copy.&lt;br /&gt;
mount /dev/sdb7 /old_home1&lt;br /&gt;
mount /dev/sdb8 /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -aAuv /old_home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err &amp;amp;&lt;br /&gt;
rsync -aAuv /old_home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# '''rsync using 2 IPBrick'''&lt;br /&gt;
&lt;br /&gt;
EX: IPBrick1 New (192.168.69.199) and IPBrick2 OLD (192.168.69.200)&lt;br /&gt;
&lt;br /&gt;
On machine IPBrick2 open ssh to root&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/ssh/sshusers-allowed&lt;br /&gt;
operator&lt;br /&gt;
root&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
insert the line root on the file.&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync on IPBrick1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* the route password will be prompt to insert.  &lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;/div&gt;</summary>
		<author><name>Balves</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration</id>
		<title>IPBrick Disk migration</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/IPBrick_Disk_migration"/>
				<updated>2015-06-30T12:53:40Z</updated>
		
		<summary type="html">&lt;p&gt;Balves: Created page with &amp;quot;&amp;lt;big&amp;gt;'''IPBrick Disk migration'''&amp;lt;/big&amp;gt;  Apply configuration and save the configurations file to your Desktop.  Just stop the the services you use. &amp;lt;pre&amp;gt; /etc/init.d/asterisk...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;'''IPBrick Disk migration'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Apply configuration and save the configurations file to your Desktop.&lt;br /&gt;
&lt;br /&gt;
Just stop the the services you use.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/etc/init.d/asterisk stop&lt;br /&gt;
/etc/init.d/apache2 stop&lt;br /&gt;
/etc/init.d/ejabberd stop&lt;br /&gt;
/etc/init.d/qmail stop&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Execute this command to backup all the data bases.&lt;br /&gt;
&amp;lt;pre&amp;gt;/opt/system/backupSYS/backup_DBs.php &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the IPBrick on the new machine or on the new disk.&lt;br /&gt;
&lt;br /&gt;
Make the rsync command to copy all the data to the new disk,&lt;br /&gt;
Some examples of rsync &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# '''rsync using local machine only, (device attached by usb)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See the disks on machine&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fdisk -l&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You must have 2 disk sda and sdb&lt;br /&gt;
&lt;br /&gt;
And see the partition table off the two devices. &lt;br /&gt;
&lt;br /&gt;
Then create 2 folders&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /old_home1&lt;br /&gt;
mkdir /old_home2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then we need to mount the partitions we need to copy.&lt;br /&gt;
mount /dev/sdb7 /old_home1&lt;br /&gt;
mount /dev/sdb8 /old_home2&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -aAuv /old_home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err &amp;amp;&lt;br /&gt;
rsync -aAuv /old_home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# '''rsync using 2 IPBrick'''&lt;br /&gt;
&lt;br /&gt;
EX: IPBrick1 New (192.168.69.199) and IPBrick2 OLD (192.168.69.200)&lt;br /&gt;
&lt;br /&gt;
On machine IPBrick2 open ssh to root&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/ssh/sshusers-allowed&lt;br /&gt;
operator&lt;br /&gt;
root&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
insert the line root on the file.&lt;br /&gt;
&lt;br /&gt;
Now lets start the rsync on IPBrick1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home1 /home1 &amp;gt; rsync_home1.log 2&amp;gt; rsync_home1.err&lt;br /&gt;
rsync -avz --rsh=&amp;quot;ssh -l root&amp;quot; 192.168.69.200:/home2 /home2 &amp;gt; rsync_home2.log 2&amp;gt; rsync_home2.err&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* the route password will be prompt to insert.  &lt;br /&gt;
&lt;br /&gt;
You can see the logs in this file -&amp;gt; rsync_home1.log&lt;br /&gt;
Or the errors in this file -&amp;gt; rsync_home1.err&lt;br /&gt;
&lt;br /&gt;
Wen the rsync is finish access to web interface and then insert and replace the configuration that you save on your desktop.&lt;br /&gt;
&lt;br /&gt;
After replacing, go to Advanced configuration -&amp;gt; disaster recovery -&amp;gt; aplication -&amp;gt; data bases -&amp;gt; and replace the last one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wen this Finnish test the services you have on IPBrick.&lt;/div&gt;</summary>
		<author><name>Balves</name></author>	</entry>

	<entry>
		<id>https://wiki.ipbrick.com/index.php/Operating_System</id>
		<title>Operating System</title>
		<link rel="alternate" type="text/html" href="https://wiki.ipbrick.com/index.php/Operating_System"/>
				<updated>2015-06-30T10:51:29Z</updated>
		
		<summary type="html">&lt;p&gt;Balves: /* Configuration Hints */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome to IPBrick.IC support ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[What is new at IPBrick.IC version 6.0]]&lt;br /&gt;
* [[Update to IPBrick version 6.0]]&lt;br /&gt;
* [[Licensing IPBrick]]&lt;br /&gt;
* [[How to update IPBrick]]&lt;br /&gt;
&lt;br /&gt;
== Information per service ==&lt;br /&gt;
&lt;br /&gt;
* IPBrick.I&lt;br /&gt;
** [[Domain Server]]&lt;br /&gt;
** [[File Server]]&lt;br /&gt;
** [[Email Server]]&lt;br /&gt;
** [[Backup]]&lt;br /&gt;
&lt;br /&gt;
* IPBrick.C&lt;br /&gt;
** [[Email Server]]&lt;br /&gt;
** [[FTP Server]]&lt;br /&gt;
** [[VPN PPTP]]&lt;br /&gt;
** [[VoIP]]&lt;br /&gt;
&lt;br /&gt;
== Information per Apps ==&lt;br /&gt;
&lt;br /&gt;
* [[Archipel]]&lt;br /&gt;
* [[CAFE]]&lt;br /&gt;
* [[Contacts]]&lt;br /&gt;
* [[Groupware]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration Hints ==&lt;br /&gt;
&lt;br /&gt;
* [[Registering Phones with Open-VPN]]&lt;br /&gt;
* [[UCoIP DNS/firewall configuration]]&lt;br /&gt;
* [[How to buy and configure a SSL certificate at IPBrick 6.1]]&lt;br /&gt;
* [[IPBrick Disk migration]]&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
* IPBrick v6.0&lt;br /&gt;
** [[NIC device detection/management]]&lt;br /&gt;
** [[Network Configuration / DHCP General Options Network Mask]]&lt;/div&gt;</summary>
		<author><name>Balves</name></author>	</entry>

	</feed>