Linux Interview Questions with answers :
1).. what is the umask in linux os ? umask is the file permission . whenever the file or directory is created , automatically the umask value is assigned like umask value is 022 ,0022 and 077 if you want to change default umask value into linux os , we can go to change the vi /etc/login.defs file 2). what is the inode number in linux os ? its contains the file information . whenever the file is created automatically inode number assigned to this file if you want to check the inode number into this file: ll -li command in this way we can get this inode number 3).How to disable the root account in linux os ? usermod -s /sbin/nologin root in this way we can disable the root account in linux os 4). what is linux boot process : bios mbr grub kernel init runlevesl 5). what is the difference between curl and wget command in linux os ? curl - checking the connectivity .wheather the connection is not established or not wget - using this...