Follow along with the video below to see how to install our site as a web app on your home screen.
Забелешка: This feature may not be available in some browsers.
STEP 1: Set up the user(s) who will access the share folder.
1. In Ubuntu, click on: System, Administration, Users and Groups.
2. In the Users and Groups window, add the username(s) of the person(s) who will access the share folder.
3. Decide which password to give to that user and enter it twice; it won't affect the password the user will need to access the folder, as you will set that later. (I decided not to share that password with the user group that includes my students so I could better control the share folder.)
4. Click OK.
STEP 2: Set up the Share Folder
1. Create/decide which folder to share.
2. Right-mouse click that folder and click on: Share folder
3. In the Share Folder window, select: Share with: SMB
4. Check: Allow Browsing Folder
5. Click: General Windows Sharing Settings
6. Fill in the[b] Host Description box
7. Fill in the domain/workgroup box with the name of your domain or workgroup
8. Click OK
9. Right-mouse click the share folder again and click on: Properties
10. Click on the Permissions tab
11. In the Others row, make sure to check all of the boxes: read, write, execute
STEP 3: Set up Samba
Note: To use these instructions in Ubuntu, click on Applications then Accessories then Terminal to open the command terminal.
1. Set up/install Samba with the following command: sudo apt-get install samba
2. Once the server is installed, issue the following command: sudo gedit /etc/samba/smb.conf
(This will open a text editor)
3. Make the following changes in the file: workgroup = WORKGROUP
(insert the name of your workgroup or domain in place of WORKGROUP)
4. Underneath it, add: netbios name = name_of_your_server (no spaces)
For example: netbios name = kenny_smb_server
Another example: netbios name = yearlyreview
5. Make sure security is set to user.
6. Scroll down until you see "[homes]" and set: browseable = yes
and writable = yes
7. Save the changes and close the text editor.
8. Create a samba user. The code for this is: sudo smbpasswd -a `whoami`
An example is: sudo smbpasswd -a 'susan'
9. Set that user's password when prompted; it can be different from the one set earlier for the computer.
10. Restart Samba for this to take effect: sudo /etc/init.d/samba restart
11. Close the terminal editor.