Linux
How to Enable Telnet in SuSE
By default, telnet is disabled in SuSE. 1) Go to YAST & double click Software Management, in the search box, enter “telnet” and click SEARCH, tick on telnet-server and click ACCEPT. Then, you will be prompted to insert SuSE CD to continue the installation. ** You must have SuSE CD to continue the installation. ** [...]
How to Create User in Fedora/Red Hat
1. Create a user [root@keem ~]# adduser asknadya [root@keem ~]# 2. Create password for asknadya [root@keem ~]# passwd asknadya Changing password for user asknadya. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully. 3. Verify [root@keem ~]# finger asknadya Login: asknadya Name: (null) Directory: /home/asknadya Shell: /bin/bash Never logged in. No [...]
How to Delete a User in Fedora/Red Hat
The userdel command is used to remove or delete user account. 1. View the existent of the user [root@keem ~]# finger keem Login: keem Name: (null) Directory: /home/keem Shell: /bin/bash Never logged in. No mail. No Plan. 2. Remove user account with home directory & mail spool. [root@keem ~]# userdel -r keem 3. Verify [root@keem [...]
How to Change Hostname in Fedora/Red Hat
Temporary Hostname: 1. Check your hostname [root@keem ~]# hostname keem 2. Change the hostname [root@keem ~]# hostname asknadya 3. Verify [root@keem ~]# hostname asknadya
How to Enable FTP in Red Hat
1. Using optional FTP daemon. #/etc/init.d/vsftpd start 2.If the system does not have optional FTP daemon, use the gssftp. Edit the gssftp file: #vi /etc/xinetd.d/gssftp Remove -a disable = no

