Version at: 19/01/2014, 01:07 vs. version at: 19/01/2014, 01:08
11#How to Install the Tatoeba Web App on a Virtual Machine
22
3#How to Install the Tatoeba Web App on a Virtual Machine
3* Grab the vm file http://mirrors.bouah.net/pub/tatoeba/Tatovm/
44
5*Grab the vm file http://mirrors.bouah.net/pub/tatoeba/Tatovm/
6
7*Untar the file:
5* Untar the file:
86
97 on windows: use 7zip [http://www.7-zip.org/]
108
119 on linux: use file-roller or from the terminal:
1210
1311 tar -xvf vmfile
1412
15 *Get and install virtual box [https://www.virtualbox.org/wiki/Downloads]
13 * Get and install virtual box [https://www.virtualbox.org/wiki/Downloads]
1614
17 *Load the vm files in virtualbox:
15 * Load the vm files in virtualbox:
1816
1917 from the GUI: Machine -> Add then browse to the location of the .vbox file
2018
2119 from the commandline: VBoxManage registervm /path/to/vm.vbox
2220
23 *The default http port is 8080 and the default ssh port is 4242
21 * The default http port is 8080 and the default ssh port is 4242
2422
25 *To ssh into the machine use the username tatoeba and password tatoeba:
23 * To ssh into the machine use the username tatoeba and password tatoeba:
2624
2725 ssh -p 4242 tatoeba@127.0.0.1
2826
29 *Now you can see the website running in your browser, just point it to the following address:
27 * Now you can see the website running in your browser, just point it to the following address:
3028
3129 127.0.0.1:8080
3230
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
31 * The mysql user is root and password is tatoeba in case you need to do operations directly on the table or import more data
3432
35 *To hack the codebase in your favorite editor in the comfort of your host computer there's 3 ways:
33 * To hack the codebase in your favorite editor in the comfort of your host computer there's 3 ways:
3634
37 *Mount a drive over ssh:
35 * Mount a drive over ssh:
3836
39 *on windows: download netdrive [www.netdrive.net] and use the aforementioned credentials and port
37 * on windows: download netdrive [www.netdrive.net] and use the aforementioned credentials and port
4038
41 *on linux: install sshfs and then mount it using:
39 * on linux: install sshfs and then mount it using:
4240
4341 sshfs tatoeba@127.0.0.1:4242 /path/to/mountpoint
4442
45 *Mount a drive over webdav:
43 * Mount a drive over webdav:
4644
47 *on windows: use netdrive, the user and password is tatoeba the port is 8080
45 * on windows: use netdrive, the user and password is tatoeba the port is 8080
4846
49 *on linux: use your favorite file manager with webdav support, or install cadaver and connect using the above credentials
47 * on linux: use your favorite file manager with webdav support, or install cadaver and connect using the above credentials
5048
51 *Mount a shared file (slow and not recommended):
49 * Mount a shared file (slow and not recommended):
5250
53 *Setup Guest additions [https://help.ubuntu.com/community/VirtualBox/GuestAdditions]
51 * Setup Guest additions [https://help.ubuntu.com/community/VirtualBox/GuestAdditions]
5452
55 *In the GUI select Devices -> Shared Folders -> Add
53 * In the GUI select Devices -> Shared Folders -> Add
5654
57 *browse to the folder you want to share from your host and select it
55 * browse to the folder you want to share from your host and select it
5856
59 *Select the Make permanent option
57 * Select the Make permanent option
6058
61 *Now mount the shared file on the guest system:
59 * Now mount the shared file on the guest system:
6260
6361 mount -t vboxfs /media/sharefoldername /path/to/mountpoint
6462
65*You can also install a graphical environment (gnome or any other DE) to work directly from the vm:
63* You can also install a graphical environment (gnome or any other DE) to work directly from the vm:
6664
6765 apt-get install task-gnome-desktop
6866
69*Make sure your codebase is up to date before coding anything with:
67* Make sure your codebase is up to date before coding anything with:
7068
7169 cd ~/tatoeba-www
7270
7371 svn update
7472
75*After you have hacked the code enough and would want to update the main repository do the following:
73* After you have hacked the code enough and would want to update the main repository do the following:
7674
77 *make sure your config files aren't being commited:
75 * make sure your config files aren't being commited:
7876
79 svn ingore config/*
77 svn ingore config/*
8078
81 *make sure you're still up to date then commit your changes:
79 * make sure you're still up to date then commit your changes:
8280
8381 svn update
8482
8583 svn commit
diff view generated by jsdifflib

Version at: 19/01/2014, 01:07

#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

version at: 19/01/2014, 01:08

#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

Note

The lines in green are the lines that have been added in the new version. The lines in red are those that have been removed.