$ mkdir -p ~/.local/{bin,share/applications}
$ cd ~/.local/bin $ wget http://remmina-unity-launcher.googlecode.com/files/remmina-unity.sh $ chmod u+x remmina-unity.sh
$ ./remmina-unity.sh
sudo add-apt-repository ppa:ingalex/super-boot-manager
sudo apt-get update && sudo apt-get install super-boot-manager
HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\RealTimeIsUniversal DWORD key with a value of 1.
try this or:
cat /proc/sys/net/ipv6/conf/all/disable_ipv6
0 means it’s enabled and 1 – disabled.
/etc/sysctl.conf:
#disable ipv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
sysctl -p
apt-get install squashfs-tools genisoimage
All the following commands MUST be run as root (sudo).
The extract and regen operations will be verbose and stop at the first error that occurs. You can of course run the extract operation just once, and run the chroot or regen operations thousands of times on the same working area. You can also run several chroot sessions in parallel. But be sure NOT to run a chroot operation while a regen is in progress.
On the primary node :
———————–
1.#pvcreate <new row diskfiel>
2.#vgextend vgname <new block device file>
3.export the map file in preview mode
#vgexport -v -p -s -m /tmp/vgname.map <vgname>
4.copy the map file to the adoptive node
On the adoptive node.
——————–
1.Note the minor number of the VG which ur goung to remove.
#ll /dev/vgname/group
2. remove the VG from the node.
#vgexport <vgname>
3.create the VG directory and group file
#mkdir /dev/vgname
#mknod /dev/vgname/group c 64 <minor number, eg 0×090000 in the below eg. “get it from the ll command” >
eg:
# ll /dev/vg10/group
crw-r–r– 1 root sys 64 0×090000 Mar 14 23:21 /dev/vg99/group
4.import the volume group.
#vgimport -v -s -m /tmp/vgname.map vgname
5. Activate the vgname in read only mode to verify and then deactivate it once is ie verified.
#vgchange -a r vgname
#vgdisplay -v vgname # u can see the new disk
#vgchange -a n vgname
/opt/omni/lbin/.util
Within there is a line:
/bin/df -P -t psfs -t ext2 [snipped]
All you need to do so that Data Protector can recognise the ext4 filesystem is added a little snippet near the other filesystems:
‘-t ext4′