Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. Quickie:
  2.  
  3. Enter the following in the order they are listed into PuTTY (or whatever you use to access SSH)
  4.  
  5. apt-get update
  6. apt-get upgrade
  7.  
  8. apt-get install tightvncserver
  9. apt-get install lxde-core
  10. apt-get install xorg
  11.  
  12. vncserver :1
  13.  
  14. (Enter password that you want)
  15.  
  16. vncserver -kill :1
  17.  
  18. nano .vnc/xstartup
  19.  
  20. (This may be tricky, but please read carefully)
  21. After typing the nano command, add to the end of the text:
  22.  
  23. lxterminal &
  24. /usr/bin/lxsession -s LXDE &
  25.  
  26. press CTRL-X, when it asks you to save "buffer", type Y
  27. and press enter when it asks for name
  28. https://db.tt/KPvwV97m BEFORE
  29. https://db.tt/HMx2SyCN AFTER
  30.  
  31. After you are back on command line, enter
  32.  
  33. vncserver :1
  34.  
  35. Connect to VNC with the IP:1 and password
  36.  
  37. example:
  38. IP:0.0.0.0:1
  39. pass: password
  40.  
  41. You are now on desktop. Hoorah! (or should be)
  42.  
  43. Installing wine:
  44. apt-get install wine
  45.  
  46. Installing firefox
  47. apt-get install firefox
  48.  
  49. Installing a text editor (gedit)
  50. apt-get install gedit
  51.  
  52. Setting up Blockland
  53.  
  54. Download the portable Blockland app
  55. http://blockland.us/files/BlocklandPortable.zip
  56.  
  57. Extract into a folder on your desktop.
  58.  
  59. Now open gedit and type in it:
  60.  
  61. #!/bin/bash
  62.  
  63. cd Desktop/folderBlocklandisIn
  64. wine blocklandlauncher.exe -dedicated
  65.  
  66. (YOU MUST HAVE INSTALLED WINE)
  67.  
  68. Save the file as "runBl.sh" in the same folder the app is in.
  69.  
  70. now go to xTerm
  71.  
  72. cd Desktop/folderblocklandisin
  73.  
  74. chmod +x runBl.sh
  75.  
  76. Now on desktop, create a new shortcut
  77. name it whatever
  78.  
  79. A new window will popup
  80. Name: Launcher name
  81. Command: (Browse to the runBl.sh file and select it)
  82.  
  83. Press ok
  84.  
  85. Now double click on the shortcut file and blockland should run!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement