Installing VNC-Server

yum check-update yum update yum groupinstall “GNOME Desktop” unlink /etc/systemd/system/default.target ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target Reboot I assume you have either kvm, or any other way to access console. You need to see Gnome GUI on the console  after the reboot yum install tigervnc-server xorg-x11-fonts-Type1 –y  useradd pirat9 passwd pirat9  cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service Edit /etc/systemd/system/vncserver@:1.service and replace string <USER> with pirat9 systemctl daemon-reload  su – pirat9 As user pirat9 run “vncpasswd” and set vNC server password for user pirat9.  systemctl start vncserver@:1.service systemctl enable…

Read More

Group File, Directory and Device permissions: chmod

Group File, Directory and Device permissions: chmod Set file, directory and device permissions: File, directory and device permissions can be set to allow or deny access to members of their own group or all others. Modification of file, directory and device access is achieved with the chmod command. The permissions can be assigned in octal notation or in the more easily recognized character format where the command form is: chmod [ugoa][+-=][rwxXst] fileORdirectoryName u User access g Group access o Other…

Read More

How to Manage File and Folder Permissions in Linux

For many users of Linux, getting used to file permissions and ownership can be a bit of a challenge. It is commonly assumed, to get into this level of usage, the command line is a must. Although there is always far more power and flexibility to be had, running seemingly complicated command isn’t alwaysa necessity. With the help of some of the most user-friendly desktop interfaces available, you can get away with little to no command…

Read More