Stop Microsoft
Operating Systems => Linux and UNIX => Topic started by: heljy on 31 October 2002, 20:41
-
...from the commandline which kernel you are using?
-
i am sure i read something about telling whether you are using bash.
uname -a
[ October 31, 2002: Message edited by: The Master of Reality / B0B ]
-
well done mor you managed to completely misinterpret his question! (http://smile.gif)
-
( lol )
If you want to see your default shell, take a peek at
/etc/passwd. So if your username would be 'joe':
$ cat /etc/passwd | grep 'joe'
(You could leave the "| grep 'joe'" part away, but what if your passwd file is extremely long?)
Your default shell should be somewhere on that entry that describes your username.
But If you want to know what kernel you are using,
try
$ uname -h
-
I believe he said "kernel", not "shell". In which case you would do this:
$ cut -d' ' -f3 /proc/version
or
$ dmesg | grep "^Linux version" | cut -d' ' -f3
But you really want to find out what your login shell is you could:
$ chsh
or
$ grep $USER /etc/passwd | cut -d':' -f7
or
$ echo $SHELL
or
$ env | grep SHELL
or
$ set | grep -i shell
or
$ which $SHELL
or
$ lkasjdflkasjdf
which will produce an error message indicating the shell from which the error was produced (in most shells, but not in csh/tcsh).
[ October 31, 2002: Message edited by: void main ]
-
Go to the command line and type
"uname -r"
this will tell you the exact kernel you are using.
-
what about checking the documentation that came with your distro?
-
Thanks for your help guys.
Just that I was asked this question when interviewing for a Student Unix Admin positin. Unfortunately, I didnt get it :(
-
Maybe you didn't take a shower after doing your barn chores before going to school that morning? (http://smile.gif) Sorry about that, I noticed where you are from which is very close to where I am originally from, in fact I'm headin' up that way on Monday for a couple of days. I grew up on a farm and a lot of us farm kids smelled up the school fast and in a hurry if we were running late with chores and didn't have time for a shower. But you are probably one of those city boys...
-
quote:
Originally posted by void main:
Maybe you didn't take a shower after doing your barn chores before going to school that morning? (http://smile.gif) Sorry about that, I noticed where you are from which is very close to where I am originally from, in fact I'm headin' up that way on Monday for a couple of days. I grew up on a farm and a lot of us farm kids smelled up the school fast and in a hurry if we were running late with chores and didn't have time for a shower. But you are probably one of those city boys...
(http://smile.gif) Well, I am an international student, so I guess it doesnt apply :D