• Main Home page: http://swtch.com/plan9port/
  • apt-get install libx11-dev libxext-dev libxt-dev libc6-dev
  • Download the source tarball
  • Unpack it in /usr/local, it creates a subdirectory plan9
  • cd plan9 && ./INSTALL in ~/bashrc put
PLAN9=/usr/local/plan9 export PLAN9
PATH=$PATH:$PLAN9/bin export PATH

Use

run Plan9 commands with

9 <cmd>

Drawterm

http://plan9.bell-labs.com/wiki/plan9/drawterm/index.html

http://swtch.com/drawterm/drawterm-linux.gz

drawterm -a authserver -c cpuserver -s secstore -u user

Mount P9 fileservers under Linux

v9fs: normally included in kernel.

http://swtch.com/v9fs/

  • mkdir /mnt/acme; mount -t 9P -o proto=unix,name=$USER /tmp/ns.x40/acme /mnt/acme mkdir /n/sources; mount -t 9P -o proto=tcp 204.178.31.8 /n/sources # sources.cs.bell-labs.com /etc/fstab::
204.178.31.8   /n/sources       9p      default,user,noauto,proto=tcp  0 0

See Also: Plan9Tutorial/FromLinux


CategoryTips