<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Deepb</id>
	<title>LinuxMCE - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Deepb"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/Deepb"/>
	<updated>2026-05-11T05:33:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34477</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34477"/>
		<updated>2013-09-14T06:29:11Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). You should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;br /&gt;
==Checking Network again==&lt;br /&gt;
If you do not see the two network adapters (vmbr0 and vmbr1) in&lt;br /&gt;
 ifconfig&lt;br /&gt;
you need to change edit interfaces again.&lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
mine looks like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
        address 192.168.0.13&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.0.1&lt;br /&gt;
        bridge_ports eth0&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
 auto vmbr1&lt;br /&gt;
 iface vmbr1 inet static&lt;br /&gt;
        address  10.0.0.1&lt;br /&gt;
        netmask  255.255.255.0&lt;br /&gt;
        bridge_ports eth1&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
&lt;br /&gt;
==Installing LinuxMCE==&lt;br /&gt;
open a browser (on any pc in the network, not on the server) and navigate to https://server-ipadress:8006. Substitute server-ipadress for the ipadress of the proxmox-server. this is usually something like https://192.168.0.5:8006&lt;br /&gt;
&lt;br /&gt;
In the left column open datacenter, then your server (the servername), then local (storage) and click in the upper middle of the page on upload. Select the linuxmce iso and upload it. There are also other possibilities, including copying from a NAS, but for further information see the proxmox wiki [http://pve.proxmox.com/wiki/Main_Page].&lt;br /&gt;
&lt;br /&gt;
When the upload is done click on the very upper right &amp;quot;create VM&amp;quot; to create a VM.&lt;br /&gt;
You only have one node, the VM ID you can put wathever you want, the same for the Name. Ignore the REsource Pool. &lt;br /&gt;
Click on Next&lt;br /&gt;
&lt;br /&gt;
Choose Linux 3.x/2.6 Kernal (l26) and click on Next.&lt;br /&gt;
&lt;br /&gt;
Then choose the iso image you just uploaded and click on Next&lt;br /&gt;
&lt;br /&gt;
Note: Everything from here on you can change later.&lt;br /&gt;
&lt;br /&gt;
Change Bus/Device from IDE to virtio (better performance)&lt;br /&gt;
Put in the Disk Size you want, and leave everything else. Click on Next.&lt;br /&gt;
&lt;br /&gt;
Choose the CPU Cores, and click Next.&lt;br /&gt;
&lt;br /&gt;
Choose Memory size an click Next.&lt;br /&gt;
&lt;br /&gt;
Change Network model to virtio (better performance) and klick next.&lt;br /&gt;
&lt;br /&gt;
Click Finnish to create VM.&lt;br /&gt;
Congratulations, now you have succesfully created the first VM.&lt;br /&gt;
&lt;br /&gt;
But not all work is done, the VM still has only one network interface.&lt;br /&gt;
&lt;br /&gt;
Now select the new VM on the left, then click on Hardware and select add-&amp;gt;network device&lt;br /&gt;
Select the Second Bridge, and again Model: Virtio and click add.&lt;br /&gt;
&lt;br /&gt;
Congratulations, now you have everything you need. Click on Start to start the VM, and on Console to get the screen of the VM.&lt;br /&gt;
Please note that the Console is quite picky about the java version, if it does not work try another one.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34475</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34475"/>
		<updated>2013-09-12T16:51:27Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). You should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;br /&gt;
===Checking Network again===&lt;br /&gt;
If you do not see the two network adapters (vmbr0 and vmbr1) in&lt;br /&gt;
 ifconfig&lt;br /&gt;
you need to change edit interfaces again.&lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
mine looks like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
        address 192.168.0.13&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.0.1&lt;br /&gt;
        bridge_ports eth0&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
 auto vmbr1&lt;br /&gt;
 iface vmbr1 inet static&lt;br /&gt;
        address  10.0.0.1&lt;br /&gt;
        netmask  255.255.255.0&lt;br /&gt;
        bridge_ports eth1&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
&lt;br /&gt;
==Installing LinuxMCE==&lt;br /&gt;
open a browser (on any pc in the network, not on the server) and navigate to https://server-ipadress:8006. Substitute server-ipadress for the ipadress of the proxmox-server. this is usually something like https://192.168.0.5:8006&lt;br /&gt;
&lt;br /&gt;
In the left column open datacenter, then your server (the servername), then local (storage) and click in the upper middle of the page on upload. Select the linuxmce iso and upload it. There are also other possibilities, including copying from a NAS, but for further information see the proxmox wiki [http://pve.proxmox.com/wiki/Main_Page].&lt;br /&gt;
&lt;br /&gt;
When the upload is done click on the very upper right &amp;quot;create VM&amp;quot; to create a VM.&lt;br /&gt;
You only have one node, the VM ID you can put wathever you want, the same for the Name. Ignore the REsource Pool. &lt;br /&gt;
Click on Next&lt;br /&gt;
&lt;br /&gt;
Choose Linux 3.x/2.6 Kernal (l26) and click on Next.&lt;br /&gt;
&lt;br /&gt;
Then choose the iso image you just uploaded and click on Next&lt;br /&gt;
&lt;br /&gt;
Note: Everything from here on you can change later.&lt;br /&gt;
&lt;br /&gt;
Change Bus/Device from IDE to virtio (better performance)&lt;br /&gt;
Put in the Disk Size you want, and leave everything else. Click on Next.&lt;br /&gt;
&lt;br /&gt;
Choose the CPU Cores, and click Next.&lt;br /&gt;
&lt;br /&gt;
Choose Memory size an click Next.&lt;br /&gt;
&lt;br /&gt;
Change Network model to virtio (better performance) and klick next.&lt;br /&gt;
&lt;br /&gt;
Click Finnish to create VM.&lt;br /&gt;
Congratulations, now you have succesfully created the first VM.&lt;br /&gt;
&lt;br /&gt;
But not all work is done, the VM still has only one network interface.&lt;br /&gt;
&lt;br /&gt;
Now select the new VM on the left, then click on Hardware and select add-&amp;gt;network device&lt;br /&gt;
Select the Second Bridge, and again Model: Virtio and click add.&lt;br /&gt;
&lt;br /&gt;
Congratulations, now you have everything you need. Click on Start to start the VM, and on Console to get the screen of the VM.&lt;br /&gt;
Please note that the Console is quite picky about the java version, if it does not work try another one.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34474</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34474"/>
		<updated>2013-09-12T16:40:38Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). You should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;br /&gt;
===Checking Network again===&lt;br /&gt;
If you do not see the two network adapters (vmbr0 and vmbr1) in&lt;br /&gt;
 ifconfig&lt;br /&gt;
you need to change edit interfaces again.&lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
mine looks like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
        address 192.168.0.13&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.0.1&lt;br /&gt;
        bridge_ports eth0&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
 auto vmbr1&lt;br /&gt;
 iface vmbr1 inet static&lt;br /&gt;
        address  10.0.0.1&lt;br /&gt;
        netmask  255.255.255.0&lt;br /&gt;
        bridge_ports eth1&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
&lt;br /&gt;
==Installing LinuxMCE==&lt;br /&gt;
open a browser (on any pc in the network, not on the server) and navigate to https://server-ipadress:8006. Substitute server-ipadress for the ipadress of the proxmox-server. this is usually something like https://192.168.0.5:8006&lt;br /&gt;
&lt;br /&gt;
In the left column open datacenter, then your server (the servername), then local (storage) and click in the upper middle of the page on upload. Select the linuxmce iso and upload it. There are also other possibilities, including copying from a NAS, but for further information see the proxmox wiki [http://pve.proxmox.com/wiki/Main_Page].&lt;br /&gt;
&lt;br /&gt;
When the upload is done click on the very upper right &amp;quot;create VM&amp;quot; to create a VM.&lt;br /&gt;
You only have one node, the VM ID you can put wathever you want, the same for the Name. Ignore the REsource Pool. &lt;br /&gt;
Click on Next&lt;br /&gt;
Choose Linux 3.x/2.6 Kernal (l26) and click on Next.&lt;br /&gt;
Then choose the iso image you just uploaded and click on Next&lt;br /&gt;
Note: Everything from here on you can change later.&lt;br /&gt;
Change Bus/Device from IDE to virtio (better performance)&lt;br /&gt;
Put in the Disk Size you want, and leave everything else.&lt;br /&gt;
Choose the CPU Cores, and click Next.&lt;br /&gt;
Choose Memory size an click Next.&lt;br /&gt;
Change Network model to virtio (better performance) and klick next.&lt;br /&gt;
Click Finnish to create VM.&lt;br /&gt;
Congratulations, now you have succesfully created the first VM.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34473</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34473"/>
		<updated>2013-09-12T16:36:12Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). You should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;br /&gt;
===Checking Network again===&lt;br /&gt;
If you do not see the two network adapters (vmbr0 and vmbr1) in&lt;br /&gt;
 ifconfig&lt;br /&gt;
you need to change edit interfaces again.&lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
mine looks like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
        address 192.168.0.13&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.0.1&lt;br /&gt;
        bridge_ports eth0&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
 auto vmbr1&lt;br /&gt;
 iface vmbr1 inet static&lt;br /&gt;
        address  10.0.0.1&lt;br /&gt;
        netmask  255.255.255.0&lt;br /&gt;
        bridge_ports eth1&lt;br /&gt;
        bridge_stp off&lt;br /&gt;
        bridge_fd 0&lt;br /&gt;
&lt;br /&gt;
==Installing LinuxMCE==&lt;br /&gt;
open a browser (on any pc in the network, not on the server) and navigate to https://server-ipadress:8006. Substitute server-ipadress for the ipadress of the proxmox-server. this is usually something like https://192.168.0.5:8006&lt;br /&gt;
&lt;br /&gt;
In the left column open datacenter, then your server (the servername), then local (storage) and click in the upper middle of the page on upload. Select the linuxmce iso and upload it. There are also other possibilities, including copying from a NAS, but for further information see the proxmox wiki [http://pve.proxmox.com/wiki/Main_Page].&lt;br /&gt;
&lt;br /&gt;
When the upload is done click on the very upper right &amp;quot;create VM&amp;quot; to create a VM.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34472</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34472"/>
		<updated>2013-09-12T15:46:17Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). You should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;br /&gt;
==Installing LinuxMCE==&lt;br /&gt;
open a browser (on any pc in the network, not on the server) and navigate to https://server-ipadress:8006. Substitute server-ipadress for the ipadress of the proxmox-server. this is usually something like https://192.168.0.5:8006&lt;br /&gt;
&lt;br /&gt;
In the left column open datacenter, then your server (the servername), then local (storage) and click in the upper middle of the page on upload. Select the linuxmce iso and upload it. There are also other possibilities, including copying from a NAS, but for further information see the proxmox wiki [http://pve.proxmox.com/wiki/Main_Page].&lt;br /&gt;
&lt;br /&gt;
When the upload is done click on the very upper right &amp;quot;create VM&amp;quot; to create a VM.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34471</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34471"/>
		<updated>2013-09-12T15:44:27Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). You should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;br /&gt;
==Installing LinuxMCE==&lt;br /&gt;
open a browser (on any pc in the network, not on the server) and navigate to https://server-ipadress:8006. Substitute server-ipadress for the ipadress of the proxmox-server. this is usually something like https://192.168.0.5:8006&lt;br /&gt;
In the left column open datacenter, then your server (the servername), then local (storage) and click in the upper middle of the page on upload. Select the linuxmce iso and upload it. There are also other possibilities, including copying from a NAS, but for further information see the proxmox wiki [http://pve.proxmox.com/wiki/Main_Page].&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34470</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34470"/>
		<updated>2013-09-12T15:39:57Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). YOu should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;br /&gt;
with&lt;br /&gt;
 cat /proc/mdstat &lt;br /&gt;
you can see how far the building of the new raid is, and only if it is finnished reboot.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34469</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34469"/>
		<updated>2013-09-12T15:38:25Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm screen&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
===Prepare Raid===&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;br /&gt;
then reboot and check with&lt;br /&gt;
 mount | grep boot&lt;br /&gt;
that /dev/md0 is mounted on /boot.&lt;br /&gt;
if that worked we tell grub that we want to boot from the raid:&lt;br /&gt;
 echo ‘GRUB_DISABLE_LINUX_UUID=true’ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo ‘GRUB_PRELOAD_MODULES=”raid dmraid”‘ &amp;gt;&amp;gt; /etc/default/grub &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/modules &lt;br /&gt;
 echo raid1 &amp;gt;&amp;gt; /etc/initramfs-tools/modules &lt;br /&gt;
 grub-install /dev/sda --recheck&lt;br /&gt;
 grub-install /dev/sda&lt;br /&gt;
 grub-install /dev/sdb --recheck&lt;br /&gt;
 grub-install /dev/sdb&lt;br /&gt;
 update-grub&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
Then we add sda1 to the raid (note: this might take some time, so make a coffee... or do it over the night. It might take &amp;gt;3 hours on 1TB). YOu should probably use screen.&lt;br /&gt;
 screen&lt;br /&gt;
 sfdisk -c /dev/sda 1 fd&lt;br /&gt;
 mdadm –add /dev/md0 /dev/sda1&lt;br /&gt;
and move the root lvm onto the raid too&lt;br /&gt;
 pvcreate /dev/md1&lt;br /&gt;
 vgextend pve /dev/md1&lt;br /&gt;
 pvmove /dev/sda2 /dev/md1&lt;br /&gt;
 vgreduce pve /dev/sda2&lt;br /&gt;
 pvremove /dev/sda2&lt;br /&gt;
 sfdisk –change-id /dev/sda 2 fd&lt;br /&gt;
 mdadm –add /dev/md1 /dev/sda2&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34468</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34468"/>
		<updated>2013-09-12T15:30:20Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
===Prepare Raid===&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -l1 -n2 /dev/md1 missing /dev/sdb2&lt;br /&gt;
copy /boot to the new raid md. (Note: md with raid means &amp;quot;multiple device&amp;quot; and has nothing to do with media director)&lt;br /&gt;
 mkfs.ext3 /dev/md0&lt;br /&gt;
 mkdir /mnt/md0&lt;br /&gt;
 mount /dev/md0 /mnt/md0&lt;br /&gt;
 cp -ax /boot/* /mnt/md0&lt;br /&gt;
Then edit the fstab&lt;br /&gt;
 nano /etc/fstab&lt;br /&gt;
and find the line for boot that says &lt;br /&gt;
 UUID=xxxxxxxxx /boot ext3 defaults 0 1&lt;br /&gt;
and change it to &lt;br /&gt;
 /dev/md0 /boot ext3 defaults 0 1&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34467</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34467"/>
		<updated>2013-09-12T15:25:20Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;br /&gt;
&lt;br /&gt;
==Software Raid==&lt;br /&gt;
If you do not want to use softwar raid you can continue with the next chapter.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;WARNING: Software raid is not supported by proxmox!&amp;lt;/span&amp;gt;&lt;br /&gt;
But of course it works nevertheless, but as usual do it on your own risk.&lt;br /&gt;
This part of the guide is based in a German guide found here[http://dominicpratt.de/proxmox-ve-3-0-software-raid/]&lt;br /&gt;
First install the required package:&lt;br /&gt;
 apt-get update; apt-get install mdadm&lt;br /&gt;
If there are any prompts on installing mdadm just ignore or press yes.&lt;br /&gt;
===Prepare Raid===&lt;br /&gt;
If you have not done so yet shutdown and plugin the second (identical) drive.&lt;br /&gt;
In this guide the harddrive that proxmox was installed on is /dev/sda, while the second to use in the raid is /dev/sdb. If you have different drive letter, please change them accordingly.&lt;br /&gt;
Prepare and create raid:&lt;br /&gt;
 sfdisk -d /dev/sda | sfdisk -f /dev/sdb&lt;br /&gt;
 sfdisk -c /dev/sdb 1 fd&lt;br /&gt;
 sfdisk -c /dev/sdb 2 fd&lt;br /&gt;
 mdadm --create -1 1 -n 2 /dev/md0 missing /dev/sdb1&lt;br /&gt;
 mdadm --create -1 1 n 2 /dev/md1 missing /dev/sdb2&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34466</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34466"/>
		<updated>2013-09-12T15:19:35Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;br /&gt;
and comment out the enterpries repository by placing a &amp;quot;#&amp;quot; in front of it. &lt;br /&gt;
 #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34465</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34465"/>
		<updated>2013-09-12T15:10:34Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;br /&gt;
If you get the message &lt;br /&gt;
 E: Some index files failed to download. They have been ignored, or old ones used instead.&lt;br /&gt;
you can ignore it, or if rather not you can edit&lt;br /&gt;
 nano /etc/apt/sources.list.d/pve-enterprise.list&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34464</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34464"/>
		<updated>2013-09-12T14:59:41Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter and continue with [[Update]]. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34463</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34463"/>
		<updated>2013-09-12T14:59:12Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;br /&gt;
===Update===&lt;br /&gt;
run&lt;br /&gt;
 aptitude update &amp;amp;&amp;amp; aptitude full-upgrade&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34462</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34462"/>
		<updated>2013-09-12T14:58:37Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;br /&gt;
if you did change some network setting run &lt;br /&gt;
 /etc/init.d/networking restart&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34461</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34461"/>
		<updated>2013-09-12T14:58:01Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
       address 192.168.0.13&lt;br /&gt;
       netmask 255.255.255.0&lt;br /&gt;
       gateway 192.168.0.1&lt;br /&gt;
       bridge_ports eth0&lt;br /&gt;
       bridge_stp off&lt;br /&gt;
       bridge_fd 0&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34460</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34460"/>
		<updated>2013-09-12T14:57:21Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter. &lt;br /&gt;
Else: check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
 :address 192.168.0.13&lt;br /&gt;
 :netmask 255.255.255.0&lt;br /&gt;
 :gateway 192.168.0.1&lt;br /&gt;
 :bridge_ports eth0&lt;br /&gt;
 :bridge_stp off&lt;br /&gt;
 :bridge_fd 0&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34459</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34459"/>
		<updated>2013-09-12T14:57:00Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
===Networking===&lt;br /&gt;
Networking should work out of the box, if it does you can ignore this chapter. Else:&lt;br /&gt;
check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
 :address 192.168.0.13&lt;br /&gt;
 :netmask 255.255.255.0&lt;br /&gt;
 :gateway 192.168.0.1&lt;br /&gt;
 :bridge_ports eth0&lt;br /&gt;
 :bridge_stp off&lt;br /&gt;
 :bridge_fd 0&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34458</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34458"/>
		<updated>2013-09-12T14:56:15Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
 :address 192.168.0.13&lt;br /&gt;
 :netmask 255.255.255.0&lt;br /&gt;
 :gateway 192.168.0.1&lt;br /&gt;
 :bridge_ports eth0&lt;br /&gt;
 :bridge_stp off&lt;br /&gt;
 :bridge_fd 0&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34457</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34457"/>
		<updated>2013-09-12T14:55:55Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1 pve-cd.iso is the current proxmox iso that you downloaded. &lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;br /&gt;
First delete the partition of the usb-stick, else Suse Studio Image Writer might fail with a access failed error.&lt;br /&gt;
Then rename the Proxmox iso that you downloaded from .iso to .raw. &lt;br /&gt;
Run Suse Studio Image Writer, selct the drive and the image.&lt;br /&gt;
&lt;br /&gt;
==Base Installation of Proxmox==&lt;br /&gt;
The graphical installation guide is straightforward and easy to understand.&lt;br /&gt;
Please note though that the installer &amp;lt;span style=&amp;quot;background:#ff0000&amp;quot;&amp;gt;DELETS ALL PARTITIONS ON THE SELECTED DRIVE!&amp;lt;/span&amp;gt; So all data on that drive is lost! You might want to unhook all harddrives that have unsaved data on it just to make sure you do not pick the wrong one by accident. &lt;br /&gt;
&lt;br /&gt;
==Reboot and Settings==&lt;br /&gt;
After the base installation reboot the system, and check if you put in the right ip data in the installation process. &lt;br /&gt;
NOTE: if you have multiple newtork cards make sure you plug the cable into the right one, if you do not have network connection try the other one.&lt;br /&gt;
check if there is internet connectivity by pinging something.&lt;br /&gt;
 ping google.com&lt;br /&gt;
If you want to change the network settings &lt;br /&gt;
 nano /etc/network/interfaces&lt;br /&gt;
if you want to use dhcp for the public interface this should look like:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet dhcp&lt;br /&gt;
If you want to use static it should look something like that:&lt;br /&gt;
 auto lo&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 auto vmbr0&lt;br /&gt;
 iface vmbr0 inet static&lt;br /&gt;
 :address 192.168.0.13&lt;br /&gt;
 :netmask 255.255.255.0&lt;br /&gt;
 :gateway 192.168.0.1&lt;br /&gt;
 :bridge_ports eth0&lt;br /&gt;
 :bridge_stp off&lt;br /&gt;
 :bridge_fd 0&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34456</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34456"/>
		<updated>2013-09-12T14:37:24Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
Adittionally if you are on Windows and want to use a usb-stick: (you do not need any addidional program on Linux)&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
==Copying Image to USB-Stick==&lt;br /&gt;
If you want to use a CD simply burn the iso to a cd.&lt;br /&gt;
===On Linux===&lt;br /&gt;
Please make sure that /dev/XYZ is the right device, as this delets all content. Please also note that this is the device WITHOUT the number for the partition. SO for example /dev/sdc AND NOT /dev/sdc1&lt;br /&gt;
 dd if=pve-cd.iso of=/dev/XYZ bs=1M&lt;br /&gt;
===On Windows===&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34455</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34455"/>
		<updated>2013-09-12T14:33:25Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1&lt;br /&gt;
Download LinuxMCE [http://www.linuxmce.org/download.html]&lt;br /&gt;
:At the moment of this writing the current version is LinuxMCE 1004 final&lt;br /&gt;
&lt;br /&gt;
If you are on Windows and want to use a usb-stick:&lt;br /&gt;
:Suse Studio Image Writer [ftp://ftp.berlios.de/pub/kiwi/ImageWriter.exe] to write the image to a usb-stick. UnetBootin and Rufus do not work. &lt;br /&gt;
&lt;br /&gt;
If you are on Linuxand want to use a usb-stick:&lt;br /&gt;
:nothing&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34454</id>
		<title>User:Deepb</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Deepb&amp;diff=34454"/>
		<updated>2013-09-12T14:29:53Z</updated>

		<summary type="html">&lt;p&gt;Deepb: Created page with &amp;quot;=Installation of LinuxMCE in a KVM Virtual Machine= On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Installation of LinuxMCE in a KVM Virtual Machine=&lt;br /&gt;
On this page I will describe the installation process of LinuxMCE in a KVM virtual machine. As a host system I use proxmox, a very user friendly and easy to use bare metal hypervisor. &lt;br /&gt;
&lt;br /&gt;
==Download Required Software==&lt;br /&gt;
&lt;br /&gt;
Download Proxmox the latest version of proxmox: [http://www.proxmox.com/downloads/category/iso-images-pve]&lt;br /&gt;
:At the moment of this writing the current version is Proxmox VE 3.1, which is found here [http://www.proxmox.com/downloads?task=callelement&amp;amp;format=raw&amp;amp;item_id=68&amp;amp;element=f85c494b-2b32-4109-b8c1-083cca2b7db6&amp;amp;method=download&amp;amp;args[0]=669a8fa5be918ec211fc0cbb0f8d50e3]&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=SMB_/_Samba_NAS_Configurations&amp;diff=34423</id>
		<title>SMB / Samba NAS Configurations</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=SMB_/_Samba_NAS_Configurations&amp;diff=34423"/>
		<updated>2013-09-04T09:21:25Z</updated>

		<summary type="html">&lt;p&gt;Deepb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Tutorials]]&lt;br /&gt;
&lt;br /&gt;
[[How to setup Samba with two workgroups?]]&lt;br /&gt;
[[How to setup Samba to follow symbolic links?]]&lt;br /&gt;
&lt;br /&gt;
Problem: we have shares for each users. if I want to access it from Windows, I have to enter password. if I don&#039;t this on first access, windows won&#039;t ask my anymore to enter password and just denies access. How can I force windows, to reenter password for share ???&lt;br /&gt;
&lt;br /&gt;
If your samba password doesn&#039;t work then run this on core to update your samba password:&lt;br /&gt;
 sudo smbpasswd pluto_USER&lt;br /&gt;
where USER is your username. For instance to change john&#039;s password run sudo smbpasswd pluto_john&lt;br /&gt;
NOTE: if you set your Samba password like that it will be forgotten on reboot. Set the password in the webadmin. [[User:Deepb|Deepb]] 11:21, 4 September 2013 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Adding fileserver on the external network ==&lt;br /&gt;
The external network does not get scanned for Samba servers. You can easily add a new server by going into the web admin&lt;br /&gt;
* Click Show Device Tree&lt;br /&gt;
* Click CORE&lt;br /&gt;
* On the right hand side, click Create Child Device&lt;br /&gt;
* Click Pick Device Template&lt;br /&gt;
* In the popup select Manufacturer-&amp;gt;Generic and Device Category-&amp;gt;File Server from the drop down menus; you can also enter device template ID 1837 in the &amp;quot;Do you know the ID of the device template?&amp;quot; field&lt;br /&gt;
* Now, it is important to fill out just the IP field (otherwise the DHCP configuration gets screwed)&lt;br /&gt;
* The username and password are only needed if the file server requires them.&lt;br /&gt;
* There is currently a bug in the webadmin which causes this file server to not be scanned for shares.&lt;br /&gt;
=== Scanning For Shares ===&lt;br /&gt;
The good thing about LinuxMCE is, that LinuxMCE routinely scans the internal network for servers, and if found, scans those servers for shares to be mounted and spidered for media. To initiate the scan for shares manually (because of a manually added server) do the following&lt;br /&gt;
* Open a terminal&lt;br /&gt;
* Execute&lt;br /&gt;
 /usr/pluto/bin/Configure_1837.sh -d &amp;lt;device-id&amp;gt; -i &#039;&amp;lt;ip-address&amp;gt;&#039; -m &#039;&amp;lt;mac-address&amp;gt;&#039;&lt;br /&gt;
&lt;br /&gt;
This will execute the scan for new shares. The shares will be presented to you on any orbiter.&lt;/div&gt;</summary>
		<author><name>Deepb</name></author>
	</entry>
</feed>