Securely copy files to Linux across a network

Use scp to copy files securely from one linux computer to another over a network. $ scp -r /folder/folder1 user@computer.com:/home/user/folder <enter> where: /folder/folder1 is the source folder -r is for recursively copy user@computer.com: is the destination computer. This can also be an IP address /home/user/folder is the destination folder. Once you type above command, you … Continue reading Securely copy files to Linux across a network

Install kppp for ordinary users

Create a group called dialout. Add specific users to the group dialout # chown root.dialout /usr/sbin/kppp # chown root.dialout /usr/bin/consolehelper # chown root.dialout /usr/bin/kppp* # chmod 4750 /usr/sbin/kppp You can now setup by typing /usr/sbin/kppp Set up /usr/sbin/kppp on the KDE panel Note that ordinary users cannot call /usr/bin/kppp as it requires root privileges. Hence … Continue reading Install kppp for ordinary users