Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


d14979b15993331865e2f0a0b2c17956ee3af727
[palacios.git] / linux_usr / v3_console
1 #!/usr/bin/perl -w
2
3 if ($#ARGV!=0) { 
4         print "v3_console /dev/v3-vmXXX\n";
5         print "Use '\\' to escape terminal\n\n";
6         print "Use v3_cons if you are on a raw PC console\n";
7         print "Use v3_vncclient if you are trying to connect to a v3_vncserver\n";
8         exit;
9 }
10
11
12 $vm=shift;
13
14 system "v3_cons_sc $vm 2>/dev/null";
15