Redhat announced the latest update to the Red Hat Enterprise Linux 6 platform.For nearly eight years, Red Hat Enterprise Linux 6 has carried most of...
Microsoft announced today that it will buy GitHub, a code repository. Microsoft will pay $7.5 billion for GitHub in an acquisition it says “will empower...
1 – SYSTEM INFORMATION
# Display Linux system information
uname -a
# Display kernel release information
uname -r
# Show which version of redhat installed
cat /etc/redhat-release
# Show how long...
Linux-Unix system administrators occasionally need some tools to track systems. You may need to know the system well and intervene immediately in case of a...
GlusterFS is one of the best open source distributed file systems. If you want a highly available distributed file system for your applications, GlusterFs is...
If you want to need passwordless SSH on Linux or Unix,you can do below steps.
rm -rf ./.ssh
mkdir .ssh
chmod 700 .ssh
chmod go-w $HOME
ssh-keygen -t rsa
Generating...