Share Pastebin
Guest
Public paste!

BioS

By: a guest | Feb 1st, 2010 | Syntax: Bash | Size: 0.37 KB | Hits: 133 | Expires: Never
Copy text to clipboard
  1. #!/bin/sh
  2. # loading sound driver
  3. /sbin/modprobe snd_dummy
  4. # setting DISPLAY
  5. export DISPLAY=:1
  6. # starting virtual framebuffer X-Server
  7. nohup /usr/bin/Xvfb ${DISPLAY} -screen scrn 300x600x8 >/dev/null &
  8. #Start Skype
  9. nohup skype >/dev/null &
  10. #Give it some Time to boot
  11. sleep 5
  12. #Start SipToSiS
  13. cd /usr/local/siptosis
  14. nohup ./SipToSis_linux siptosis.cfg >/dev/null &