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.


Reinstate v3_console (accidental delete)
Peter Dinda [Wed, 20 Jun 2012 23:08:42 +0000 (18:08 -0500)]
linux_usr/v3_console [new file with mode: 0755]

diff --git a/linux_usr/v3_console b/linux_usr/v3_console
new file mode 100755 (executable)
index 0000000..d14979b
--- /dev/null
@@ -0,0 +1,15 @@
+#!/usr/bin/perl -w
+
+if ($#ARGV!=0) { 
+       print "v3_console /dev/v3-vmXXX\n";
+       print "Use '\\' to escape terminal\n\n";
+       print "Use v3_cons if you are on a raw PC console\n";
+       print "Use v3_vncclient if you are trying to connect to a v3_vncserver\n";
+       exit;
+}
+
+
+$vm=shift;
+
+system "v3_cons_sc $vm 2>/dev/null";
+