How to resolve NFS stale file handle issue in linux ?
Today we will look at an interesting article how to resolve NFS Stale file handle issue which works in most of the cases. However sometimes we need to perform some...
Today we will look at an interesting article how to resolve NFS Stale file handle issue which works in most of the cases. However sometimes we need to perform some...
Today we will check how to resolve an interesting issue i encountered while installing a package on server. I was installing realtime kernel package on one server and it had...
Recently i have faced an interesting issue when i was trying to mount a NFS partition. The NFS partition was failed to mount with some strange error message “System call...
Lets start with python programming and see how to ping a list of servers from a hosts file. First lets start with program. I. Program import os hostsfile=open("hosts", "r") lines=hostsfile.readlines()...
Today we will look at the solution of two issues w.r.t lastb command. lastb command by default shows details of all the bad login attempts. Issue 1: last command display...
Today we will look at a very basic article to know various ways to create a file in linux. Lets see the various commands below. 1. Touch command [root@ngelinux ]#...
Let us look how to mount a filesystem from backup superblock location. In general this is not required, however sometimes in case you feel issue with primary superblock, this way...
One of the interesting interview question or concept for a directory or file on linux bash shell is “what are the default link count of a file/dir when its created.”...
Today lets have a look at a short tip to quickly fill complete disk space of our hard drive in Linux with a single command. It is an interesting and...
In this post, we will look different ways to get owner of a file in linux. We generally use ls command, however there are different ways available to achieve this....