Advertisement
Guest User

mountolas

a guest
Apr 26th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.30 KB | None | 0 0
  1. # /etc/fstab: static file system information.
  2. #
  3. # Use 'blkid' to print the universally unique identifier for a
  4. # device; this may be used with UUID= as a more robust way to name devices
  5. # that works even if disks are added and removed. See fstab(5).
  6. #
  7. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  8. # / was on /dev/sda3 during installation
  9. UUID=cd03b692-1971-4e0c-b384-bbe7665e7401 /               ext4    errors=remount-ro 0       1
  10. UUID=f7f21739-2361-4d2a-8a61-18679cb6143f /mnt               ext4    defaults,nofail 0       2
  11. #UUID=B6F4CCA8F4CC6C65  /media/Windows_data ntfs-3g defaults,locale=en_US.utf8,nofail,umask=000,uid=1000,windows_names    0   2
  12. UUID=5A3499F83499D6FB  /media/Windows_data     ntfs-3g permissions,inherit,locale=en_US.utf8,nofail,windows_names    0   2
  13. /mnt/swapfile none swap sw 0 0
  14. #!/bin/bash
  15.  
  16. mount //192.168.0.102/IdasoShare -t cifs -o uid=1000,username=guest,password= /media/IdasoShare_Borosi/
  17. mount //192.168.0.100/e -t cifs -o uid=1000,username=guest,password= /media/f_Csaba/
  18. mount //192.168.0.103/d -t cifs -o uid=1000,username=guest,password= /media/d_Csaba/
  19. mount //192.168.0.100/Public -t cifs -o uid=1000,username=guest,password=  /media/Public_Balint/
  20. mount //192.168.0.100/IdasoData -t cifs -o uid=1000,username=guest,password=  /media/Idaso_Data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement