Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. #LC_NUMERIC - Specifies the decimal delimiter
  2. export LC_NUMERIC="en_US.UTF-8"
  3. #-------------------------------------------------------------------
  4. #add custom aliases path
  5. export PATH=$PATH:/home/user/aliases
  6. #-------------------------------------------------------------------
  7. #run backburnerServer (tool to control remote computing) run process
  8. /usr/discreet/backburner/backburnerServer &
  9. #-------------------------------------------------------------------
  10. #run x11vnc run process
  11. /usr/bin/x11vnc &
  12.  
  13. /etc/rc.local
  14.  
  15. /etc/init/*.conf
  16.  
  17. #
  18. # This task is run on startup to set the system hostname from /etc/hostname,
  19. # falling back to "localhost" if that file is not readable or is empty and
  20. # no hostname has yet been set.
  21.  
  22. description "set system hostname"
  23.  
  24. start on startup
  25.  
  26. task
  27. exec hostname -b -F /etc/hostname
  28.  
  29. sudo -i
  30.  
  31. vi /machineSetup.sh
  32.  
  33. #!/bin/bash
  34. #LC_NUMERIC - Specifies the decimal delimiter
  35. export LC_NUMERIC="en_US.UTF-8"
  36. #-------------------------------------------------------------------
  37. #add custom aliases path
  38. export PATH=$PATH:/home/user/aliases
  39. #-------------------------------------------------------------------
  40. #run backburnerServer (tool to control remote computing) run process
  41. /usr/discreet/backburner/backburnerServer &
  42. #-------------------------------------------------------------------
  43. #run x11vnc run process
  44. /usr/bin/x11vnc &
  45.  
  46. chmod 0755 vi /machineSetup.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement