Results 1 to 5 of 5
  
I got my asus Eee PC with linux last christmas and  I was wondering how do I find out what version of  linux I have on it?...
- 05-31-2009 #1Just Joined!
- Join Date
- May 2009
- Posts
- 1
How do I know what system I am Running
I got my asus Eee PC with linux last christmas and I was wondering how do I find out what version of linux I have on it?
- 05-31-2009 #2
At a command prompt type
cat /proc/version
on my machine I get
Linux version 2.6.18.8-0.13-default (geeko@buildhost) (gcc version 4.1.2 20061115 (prerelease) (SUSE Linux)) #1 SMP Thu Nov 6 13:35:13 UTC 2008
this shows the kernel version gcc version that built it, the generic distribution, that it is a SMB build and the time date it was built
Finding the version number for you distribution is a bit more difficult because it may not be in the same place for different distros. Post the result of the above and some will help find the version of the distro.
- 05-31-2009 #3
You might also try
Code:cat /etc/release
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 05-31-2009 #4
Is something wrong at my side? Instead of English fonts, special characters are appearing in First post of this thread.
Originally Posted by DiehardDiesel It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 05-31-2009 #5Just Joined!
- Join Date
- Sep 2006
- Location
- Houston, TX (usa)
- Posts
- 2
I'm seeing nothing but little squares w/ a few spaces in between.
On my system I get:
I prefer:Code:$ cat /etc/release cat: /etc/release: No such file or directory
or if you don't want to learn/use less' next/prev file controls & are willing to have a more complicated command:Code:$ less /etc/*{release,version}*Code:e='========'; E="$e$e$e$e$e" d='--------'; D="$d$d$d" for F in /etc/*{release,version}* do echo -e "$E\n$F\n$D" cat -n $F done | less


Reply With Quote
