Guest User

Untitled

a guest
Jan 10th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. The Common Internet File System (CIFS) is the standard way that computer
  2. users share files across corporate intranets and the Internet. An enhanced
  3. version of the Microsoft open, cross-platform Server Message Block (SMB)
  4. protocol, CIFS is a native file-sharing protocol.
  5.  
  6. Some of the platforms that CIFS supports are:
  7. Microsoft Windows 2000, Microsoft® Windows NT®,
  8. Microsoft® Windows® 98, Microsoft® Windows® 95
  9. Microsoft® OS/2 LAN Manager
  10. Microsoft® Windows® for Workgroups
  11. UNIX
  12.  
  13. sudo apt-get install cifs-utils
  14.  
  15. mkdir ~/LANPC
  16. mkdir ~/LANPC/DEV
  17. sudo mount //192.168.5.213/c /home/pi/LANPC/DEV -o username=Myname,password=Mypassword
  18.  
  19. ls ~/LANPC/DEV
  20.  
  21. mkdir ~/Arduino
  22. cp -r ~/LANPC/DEV/Users/SDsolar/Documents/Arduino ~/Arduino
  23.  
  24. sudo leafpad /etc/fstab
  25.  
  26. //192.168.5.213/c /home/pi/LANPC/DEV cifs username=Myname,password=Mypassword,iocharset-utf8,sec=ntlm 0 0
  27.  
  28. sudo mount -a;
  29.  
  30. Click "Menu" button
  31. Select Preferences
  32. Select Raspberry Pi Configuration
  33. In the System tab there is an option called "Network at Boot"
  34. Check the "Wait for network" box
  35. Click "OK"
  36.  
  37. Right-click on the desktop
  38. Select Preferences
  39. Select Desktop Icons
  40. Check the box that says "Show connected volumes on the desktop"
Add Comment
Please, Sign In to add comment