Version at: 19/01/2014, 01:03 vs. version at: 19/01/2014, 01:05 | ||
---|---|---|
1 | #How to Install the Tatoeba Web App on a Virtual Machine | |
2 | ||
1 | 3 | #How to Install the Tatoeba Web App on a Virtual Machine |
2 | 4 | |
3 | 5 | -Grab the vm file http://mirrors.bouah.net/pub/tatoeba/Tatovm/ |
6 | ||
4 | 7 | -Untar the file: |
8 | ||
5 | 9 | on windows: use 7zip [http://www.7-zip.org/] |
10 | ||
6 | 11 | on linux: use file-roller or from the terminal: |
12 | ||
7 | 13 | tar -xvf vmfile |
14 | ||
8 | 15 | -Get and install virtual box [https://www.virtualbox.org/wiki/Downloads] |
16 | ||
9 | 17 | -Load the vm files in virtualbox: |
18 | ||
10 | 19 | from the GUI: Machine -> Add then browse to the location of the .vbox file |
20 | ||
11 | 21 | from the commandline: VBoxManage registervm /path/to/vm.vbox |
22 | ||
12 | 23 | -The default http port is 8080 and the default ssh port is 4242 |
24 | ||
13 | 25 | -To ssh into the machine use the username tatoeba and password tatoeba: |
26 | ||
14 | 27 | ssh -p 4242 tatoeba@127.0.0.1 |
28 | ||
15 | 29 | -Now you can see the website running in your browser, just point it to the following address: |
30 | ||
16 | 31 | 127.0.0.1:8080 |
32 | ||
17 | 33 | -The mysql user is root and password is tatoeba in case you need to do operations directly on the table or import more data |
18 | 34 | |
19 | 35 | -To hack the codebase in your favorite editor in the comfort of your host computer there's 3 ways: |
36 | ||
20 | 37 | -Mount a drive over ssh: |
38 | ||
21 | 39 | -on windows: download netdrive [www.netdrive.net] and use the aforementioned credentials and port |
40 | ||
22 | 41 | -on linux: install sshfs and then mount it using: |
42 | ||
23 | 43 | sshfs tatoeba@127.0.0.1:4242 /path/to/mountpoint |
44 | ||
24 | 45 | -Mount a drive over webdav: |
46 | ||
25 | 47 | -on windows: use netdrive, the user and password is tatoeba the port is 8080 |
48 | ||
26 | 49 | -on linux: use your favorite file manager with webdav support, or install cadaver and connect using the above credentials |
50 | ||
27 | 51 | -Mount a shared file (slow and not recommended): |
52 | ||
28 | 53 | -Setup Guest additions [https://help.ubuntu.com/community/VirtualBox/GuestAdditions] |
54 | ||
29 | 55 | -In the GUI select Devices -> Shared Folders -> Add |
56 | ||
30 | 57 | -browse to the folder you want to share from your host and select it |
58 | ||
31 | 59 | -Select the Make permanent option |
60 | ||
32 | 61 | -Now mount the shared file on the guest system: |
62 | ||
33 | 63 | mount -t vboxfs /media/sharefoldername /path/to/mountpoint |
34 | 64 | |
35 | 65 | -You can also install a graphical environment (gnome or any other DE) to work directly from the vm: |
66 | ||
36 | 67 | apt-get install task-gnome-desktop |
37 | 68 | |
38 | 69 | -Make sure your codebase is up to date before coding anything with: |
70 | ||
39 | 71 | cd ~/tatoeba-www |
72 | ||
40 | 73 | svn update |
74 | ||
41 | 75 | -After you have hacked the code enough and would want to update the main repository do the following: |
76 | ||
42 | 77 | -make sure your config files aren't being commited: |
78 | ||
43 | 79 | svn ingore config/* |
80 | ||
44 | 81 | -make sure you're still up to date then commit your changes: |
82 | ||
45 | 83 | svn update |
84 | ||
46 | 85 | svn commit |
diff view generated by jsdifflib |
Version at: 19/01/2014, 01:03
#How to Install the Tatoeba Web App on a Virtual Machine -Grab the vm file http://mirrors.bouah.net/pub/tatoeba/Tatovm/ -Untar the file: on windows: use 7zip [http://www.7-zip.org/] on linux: use file-roller or from the terminal: tar -xvf vmfile -Get and install virtual box [https://www.virtualbox.org/wiki/Downloads] -Load the vm files in virtualbox: from the GUI: Machine -> Add then browse to the location of the .vbox file from the commandline: VBoxManage registervm /path/to/vm.vbox -The default http port is 8080 and the default ssh port is 4242 -To ssh into the machine use the username tatoeba and password tatoeba: ssh -p 4242 tatoeba@127.0.0.1 -Now you can see the website running in your browser, just point it to the following address: 127.0.0.1:8080 -The mysql user is root and password is tatoeba in case you need to do operations directly on the table or import more data -To hack the codebase in your favorite editor in the comfort of your host computer there's 3 ways: -Mount a drive over ssh: -on windows: download netdrive [www.netdrive.net] and use the aforementioned credentials and port -on linux: install sshfs and then mount it using: sshfs tatoeba@127.0.0.1:4242 /path/to/mountpoint -Mount a drive over webdav: -on windows: use netdrive, the user and password is tatoeba the port is 8080 -on linux: use your favorite file manager with webdav support, or install cadaver and connect using the above credentials -Mount a shared file (slow and not recommended): -Setup Guest additions [https://help.ubuntu.com/community/VirtualBox/GuestAdditions] -In the GUI select Devices -> Shared Folders -> Add -browse to the folder you want to share from your host and select it -Select the Make permanent option -Now mount the shared file on the guest system: mount -t vboxfs /media/sharefoldername /path/to/mountpoint -You can also install a graphical environment (gnome or any other DE) to work directly from the vm: apt-get install task-gnome-desktop -Make sure your codebase is up to date before coding anything with: cd ~/tatoeba-www svn update -After you have hacked the code enough and would want to update the main repository do the following: -make sure your config files aren't being commited: svn ingore config/* -make sure you're still up to date then commit your changes: svn update svn commit
version at: 19/01/2014, 01:05
#How to Install the Tatoeba Web App on a Virtual Machine #How to Install the Tatoeba Web App on a Virtual Machine -Grab the vm file http://mirrors.bouah.net/pub/tatoeba/Tatovm/ -Untar the file: on windows: use 7zip [http://www.7-zip.org/] on linux: use file-roller or from the terminal: tar -xvf vmfile -Get and install virtual box [https://www.virtualbox.org/wiki/Downloads] -Load the vm files in virtualbox: from the GUI: Machine -> Add then browse to the location of the .vbox file from the commandline: VBoxManage registervm /path/to/vm.vbox -The default http port is 8080 and the default ssh port is 4242 -To ssh into the machine use the username tatoeba and password tatoeba: ssh -p 4242 tatoeba@127.0.0.1 -Now you can see the website running in your browser, just point it to the following address: 127.0.0.1:8080 -The mysql user is root and password is tatoeba in case you need to do operations directly on the table or import more data -To hack the codebase in your favorite editor in the comfort of your host computer there's 3 ways: -Mount a drive over ssh: -on windows: download netdrive [www.netdrive.net] and use the aforementioned credentials and port -on linux: install sshfs and then mount it using: sshfs tatoeba@127.0.0.1:4242 /path/to/mountpoint -Mount a drive over webdav: -on windows: use netdrive, the user and password is tatoeba the port is 8080 -on linux: use your favorite file manager with webdav support, or install cadaver and connect using the above credentials -Mount a shared file (slow and not recommended): -Setup Guest additions [https://help.ubuntu.com/community/VirtualBox/GuestAdditions] -In the GUI select Devices -> Shared Folders -> Add -browse to the folder you want to share from your host and select it -Select the Make permanent option -Now mount the shared file on the guest system: mount -t vboxfs /media/sharefoldername /path/to/mountpoint -You can also install a graphical environment (gnome or any other DE) to work directly from the vm: apt-get install task-gnome-desktop -Make sure your codebase is up to date before coding anything with: cd ~/tatoeba-www svn update -After you have hacked the code enough and would want to update the main repository do the following: -make sure your config files aren't being commited: svn ingore config/* -make sure you're still up to date then commit your changes: svn update svn commit