In /boot/grub/grub.conf file there is a line
kernel /vmlinuz-version ro root=/dev/sda2, What is the
meaning of "/" before vmlinuz? Pls explain?
Answer / bajira
In this line, "/" refers to /boot. As you can see, root=/dev/sda2, it means the root is mounted in 1st partition of sda device. So the mount will be refereed as /root and inside that /boot will be available. So /vmlinuz-version will be available in /boot/vmlinuz.
| Is This Answer Correct ? | 8 Yes | 1 No |
What are linux commands?
which command is used to see all the system configuration? like hardware, HDD, memory etc.
14 Answers ADS, eClinicalWorks, NJN,
Which two commands can you use to delete directories?
What is command to check ports running/used over local machine
What is clang tidy?
What is p in mkdir?
what is difference between $@ and $* in UNIX Shell script
What is file and example?
What is bash command?
How do make computer faster?
How do I find previous commands in linux?
Hi All of Unix/Linux professional Q.Why soft link file not open by cat command. Ihave make following symbolic link but when i open with #cat linkfilename it does not oped please see the following code and try to answer. # ln -s file1 ~/mydir/filea [root@dhcppc0 ~]# cd mydir [root@dhcppc0 mydir]# ls -l total 4 lrwxrwxrwx 1 root root 5 2010-04-04 09:04 filea -> file1 [root@dhcppc0 mydir]# cat filea cat: filea: No such file or directory