#opensuse on a SD card or USB stick with a persistent file system

#opensuse on a SD card or USB stick with a persistent file system

#opensuse #gnu/linux desktop #os on the #asus #eee 701 #netbook

opensuse gnu/linux destops 10,11 & 12 on asus eee netbooks

oh dear @pinterest #smn #photo #sharing gets more addictive every day

oh dear @pinterest #smn #photo #sharing gets more addictive every day

http://pinterest.com/osde8info/virtualisatio

#apache #httpd namevirtualhost, virtualhost and servername

in #apache #httpd to setup virtual hosts use tyhe directives namevirtualhost, virtualhost and servername

NameVirtualHost *:80

<VirtualHost *:80>
 ServerName site1.example.com
 DocumentRoot /var/www/site1/public_html
 <Directory "/var/www/site1/public_html">
  allow from all
  Options +Indexes
 </Directory>
</VirtualHost>

<VirtualHost *:80>
 ServerName site2.example.com
 DocumentRoot "/var/www/site2/public_html"
 <Directory "/var/www/site2/public_html">
  allow from all
  Options +Indexes
 </Directory>
</VirtualHost>

<VirtualHost *:80>
 ServerName site3.example.com
 DocumentRoot /var/www/site3/public_html
 <Directory "/var/www/site3/public_html">
  allow from all
  Options +Indexes
 </Directory>
</VirtualHost>

to get a list of your vhosts type

httpd -S

see also