LLDisable Screen LockTo avoid issues with unlocking the screen, disable the screen lock feature:# sudo -u "$username" gsettings set org.gnome.desktop.screensaver lock-enabled false
Folder Sizeroot@log# du -ch mysql.old/Windows File share to Ubuntu //192.168.8.1/log/ - Windoes file share path & Linux puth-/mnt/backupenable CIFS (SMB 1.0) file sharing in Windows 10, you need to enable it in the "Turn Windows features on or off" option within Control Panel# mkdir -p /mnt/backup# mount -t cifs -o username=administrator,password=xxxxxxx,file_mode=0777,dir_mode=0777 "//192.168.8.1/log/" /mnt/backupRoot Access Sudoers File -Edit%sudo ALL=(ALL:ALL) NOPASSWD: ALLFTP File share to Ubuntusudo apt updatesudo apt install curlftpfs sudo -p mkdir /mnt/my_ftpsudo curlftpfs ftp://username:password@ftp.example.com /mnt/my_ftpcd /mnt/my_ftp To unmount the FTP folder when you're done: sudo umount /mnt/my_ftp -----------------------------------------Mount the FTP Folder: sudo curlftpfs -o allow_other,uid=1000,gid=1000 ftp-user:ftp-pass@ftp.example.com /mnt/ftpReplace ftp-user with your FTP username.
Replace ftp-pass with your FTP password.
Replace ftp.example.com with the FTP server address.
1000 is a common user ID, adjust it if needed.
-o allow_other allows other users to access the mount point.
# df -h the FTP mount point listed in the output. # sudo nano /etc/fstabcurlftpfs#ftp-user:ftp-pass@ftp.example.com /mnt/ftp fuse allow_other,uid=1000,gid=1000,umask=0022 0 0LL