REDHAT INTERVIEW QUESTIONS
Red hat interview questions Q: – How are devices represented in UNIX? All devices are represented by files called special files that are located in /dev directory. Q: – Tell me the steps to remove the swap file? Firstly disable the swap file by “swapoff” command. Remove Swap file entry from /etc/fstab file. Now remove the swap file by “rm” command. Q: – What can we do with “parted” command or utility? – View the existing partition table – Add partitions from free space or additional hard drives – Change the size of existing partitions Q: – What is 'inode'? All UNIX files have its description stored in a structure called 'inode'. The inode contains info about the file-size, its location, time of last access, time of last modification, permission and so on. Directories are also represented as files and have an associated inode. Q: – Can we resize the size o...