Connect Debian VNC Virtual Desktop Remotely from MacOS

9 , , Leave a Comment
I have a Debian server without monitor, and I wan to access it remotely from my MacOS. Following is the steps to archive this. Install and start Virtual Desktop # Install updates sudo apt update # install the Xfce desktop sudo apt install xfce4 xfce4-goodies Edit file ~/.vnc/xstartup and set content to followin…

Right way to mount Samba on Debian and Ubuntu

122 , , Leave a Comment
I was trying to mount Samba with following commands: sudo apt-get update sudo apt-get install cifs-utils mkdir -p /mnt/smbshare sudo mount.cifs //192.168.0.200 /mnt/smbshare -o username=admin,password=1234 Then I create a folder myshare under the samba server and run: sudo mount.cifs //192.168.0.200/myshare /mn…