Problem I had an NFS server from which some folders were shared with client servers. Shared folders were mounted on the client servers. Due to some hardware problem in the NFS server, the server suddenly becomes dead and after that, I created and configured a new …
Problem I tried to copy a file from one Linux server dbappweb to another Linux server dbappweb1 but got the error ‘Permission denied’. I tried to copy the file using the SCP command over ssh. # scp -p PKIServer.zip user1@dbappweb1:/home/user1/ user1@dbappweb1's password: scp: /home/user1/PKIServer.zip: Permission denied Reason I got …
Problem I had an NFS server from which some folders were shared with the client-server. Shared folders were mounted on the client server. Due to some hardware problem in the NFS server, the server suddenly becomes dead and after that when I tried to access the …
You cannot create a Linux partition larger than 2 TB using the fdisk command. Using fdisk you could not create partitions larger than 2 TB. It is fine for desktop and laptop users, but for servers, you need large partitions like 2TB, 3TB, 4TB etc. Root …
Linux supports numerous file systems, but common choices for the system disk on a block device include the ext* family (ext2, ext3 and ext4), XFS, JFS, ReiserFS and btrfs. ext4 is the latest file system of ext* family. You can determine the file system of your various …
Problem: When I was trying to mount a partition shared through NFS on a Linux machine, I was getting the below error: # mount 10.xx.x.xx:/xyz/abc /test mount: mount to NFS server '10.xx.x.xx' failed: timed out (retrying). mount: mount to NFS server '10.xx.x.xx' failed: timed out (retrying). Reason: I was …
The Mac Task Manager Task Manager of Mac OS X is called Activity Monitor. You can find the status of the system like CPU uses, Network info, Disk info etc. through Activity Monitor. You can also kill a process through Activity Monitor. Remember, the Task Manager …