Advertisement
Guest User

Untitled

a guest
Sep 20th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. rich@rich-HP-ProDesk-400-G3-SFF:~$ cat /etc/fstab
  2. # /etc/fstab: static file system information.
  3. #
  4. # Use 'blkid' to print the universally unique identifier for a
  5. # device; this may be used with UUID= as a more robust way to name devices
  6. # that works even if disks are added and removed. See fstab(5).
  7. #
  8. # <file system> <mount point> <type> <options> <dump> <pass>
  9. # / was on /dev/sda2 during installation
  10. UUID=56e67918-4618-4a2d-9920-5abe6251da07 / ext4 errors=remount-ro 0 1
  11. # /boot/efi was on /dev/sda1 during installation
  12. UUID=8EF8-725D /boot/efi vfat defaults 0 1
  13. # swap was on /dev/sda3 during installation
  14. UUID=9bb0f01c-214f-4726-8d6e-c515cf4eec79 none swap sw 0 0
  15.  
  16. # Added by RJE 16/07/2016 to get the stuff I want mounted
  17. //192.168.69.66/maindata /mnt/maindata/ cifs user=danearle,password=.........,rw,dir_mode=0777,file_mode=0777,gid=staff,uid=rich 0 0
  18. //192.168.69.66/utilities /mnt/utilities/ cifs user=danearle,password=.......,rw,dir_mode=0777,file_mode=0777,gid=staff,uid=rich 0 0
  19. //192.168.69.66/Ftp_webs /mnt/ftp_webs cifs user=danearle,password........,rw,dir_mode=0777,file_mode=0777,gid=staff,uid=rich 0 0
  20.  
  21. rich@rich-HP-ProDesk-400-G3-SFF:~$
  22. rich@rich-HP-ProDesk-400-G3-SFF:~$ umount -a
  23. umount: only root can use "--all" option
  24. rich@rich-HP-ProDesk-400-G3-SFF:~$ sudo umount -a
  25. [sudo] password for rich:
  26. umount: /run/user/1000: target is busy <<< When locked this is what it does
  27. (In some cases useful info about processes that
  28. use the device is found by lsof(8) or fuser(1).)
  29. ^Z^Z
  30. [1]+ Stopped sudo umount -a
  31. rich@rich-HP-ProDesk-400-G3-SFF:~$ fg
  32. sudo umount -a
  33.  
  34.  
  35. ^C
  36. rich@rich-HP-ProDesk-400-G3-SFF:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement