Install Fedora 19 KDE Desktop Edition in VMware Workstation 9

Install Fedora 19 KDE Desktop Edition in VMware Workstation 9

Red Hat - CentOS - Fedora, Video Tutorials, Workstation
Anaconda installer for Fedora 18 was a complete mess after its installer user-interface was redone. The Fedora 19 KDE installation is fairly simple and easy process. The Best Features Of Fedora 19 Fedora 18 is one of the first major tier-one Linux distributions shipping the GCC 4.8 compiler by default. GCC 4.8 has a whole lot of improvements from faster performance for some workloads to better instruction set coverage on new processors and full C++11 support. GNOME 3.8, KDE Plasma 4.10, and MATE 1.6 are among the Linux desktop environment options available on Fedora 19. GNOME 3.8, of course, is the default desktop environment for Fedora Linux 19. RPM 4.11 is now in use for package management and it brings better performance, lower memory usage, better file conflict detection, and…
Read More
How to Enable SSL Support for VSFTPD – RHEL 6 – CentOS 6

How to Enable SSL Support for VSFTPD – RHEL 6 – CentOS 6

Red Hat - CentOS - Fedora, Video Tutorials
FTP, or file transfer protocol, was a popular way to transfer files between local and remote computers in the past. Traditional FTP is rather insecure. When you login, your username and password are transmitted in clear text, raising the possibility of your credentials being sniffed. If you still want to use FTP instead of a more secure alternative like SFTP, which uses the SSH protocol to implement file transfers, you can secure it somewhat by configuring FTP to use SSL. You can quite easily configure your vsftpd server to use OpenSSL encryption, so that usernames & password, and even data files, are encrypted during transfer. It takes just a few simple steps. Steps: 1. Check whether the latest mod_ssl installed locate mod_ssl 2. Install the latest mod_ssl via yum yum…
Read More
Common Network Utilities in Linux

Common Network Utilities in Linux

Linux
Computers are connected in a network to exchange information or resources each other. Maintaining of system and network up and running is an essentials task of System or Network Administrator’s job. In this tutorial, I will explain various tools which can be useful when networking with other computers both within the network and across the internet, obtaining more information about other computers. ping - Determine if remote host is up/available telnet - Determine if local/remote service is available netstat - Shows network connections, routing tables, interface statistics netstat -a - dumps ALL sockets with: service/port and hostname resolution netstat -an - same as above, but suppresses name resolution netstat -ntl - suppresses name resolution, shows all TCP and listeners netstat -ntlp - same as above, includes programs bound to ports netstat…
Read More
Installing Arch Linux 2013.05.01 + Xfce 4.10 in VMware Workstation 9

Installing Arch Linux 2013.05.01 + Xfce 4.10 in VMware Workstation 9

Linux, Video Tutorials
What is Arch Linux? Arch Linux is an independently developed general purpose GNU/Linux distribution. Development focuses on simplicity, minimalism. Arch Linux was founded by Canadian programmer Judd Vinet. Its first formal release, Arch Linux 0.1, was on March 11, 2002. Although Arch is completely independent, it draws inspiration from the simplicity of other distributions including Slackware, CRUX and BSD. Arch Linux is one of my favorite GNU/Linux distributions, however it is not as easy to install as are other Linux distributions. Related Video: https://www.youtube.com/watch?v=8ILPjsZvs8Y Hope you found it informative and useful. Any questions or comments are welcomed.
Read More

SSH Connection: Wait long after entering username – ssh password prompt delay

Linux
When I make ssh connection I get long wait just after entering username. It's most likely that ssh daemon  is set up to do a DNS reverse-lookup on the host that's connecting. So, sshd try to find reverse DNS record for a while before prompting you password. If you do not want to wait,  you can either add your client's ip and hostname information to /etc/hosts file on linux or you can disable reverse dns lookup in /etc/ssh/sshd_config 1- Open your terminal window 2- Edit /etc/ssh/sshd_config 3- Add UseDNS no at the end 4- Restart your ssh daemon
Read More
WinRM service failed to create the following SPNs: WSMAN – Event ID:10154

WinRM service failed to create the following SPNs: WSMAN – Event ID:10154

Linux, Windows Server
I was getting an error " The WinRM service failed to create the following SPNs: WSMAN/hostname; WSMAN/hostname. " at startup on Windows 2008 R2 Domain Controllers. Additional Data Log Name: System Source:  Microsoft-Windows-WinRM Event ID: 10154 Level:  Warning Solution: WinRM runs under " Network Service " account. You can eliminate this problem by giving Validated Write to Service Principal Name  permission to the NETWORK SERVICE using the ADSIEDIT.msc. This will allow WinRM to auto create the necessary SPNs on that domain controller. After granting this permission, re-sync all DCs and do a reboot to each domain controller where you did the change,  after that reboot you will see that the warning is gone and the required SPNs were created successfully. Steps: 1- Use ADSIEDIT.msc 2- Choose Default naming context and…
Read More