Find the answer to your Linux question:
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?...
  1. #1
    Just 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?

  2. #2
    Linux Guru gogalthorp's Avatar
    Join Date
    Oct 2006
    Location
    West (by God) Virginia
    Posts
    3,105
    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.

  3. #3
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,144
    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.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Is something wrong at my side? Instead of English fonts, special characters are appearing in First post of this thread.
    Quote Originally Posted by DiehardDiesel

    I got my asus Eee PC with linux last christm as and  I was wondering how do I find out what vers ion of  linux I have on it?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Sep 2006
    Location
    Houston, TX (usa)
    Posts
    2

    Question

    Quote Originally Posted by devils casper View Post
    Is something wrong at my side? Instead of English fonts, special characters are appearing in First post of this thread.
    I'm seeing nothing but little squares w/ a few spaces in between.


    On my system I get:
    Code:
    $ cat /etc/release
    cat: /etc/release: No such file or directory
    I prefer:
    Code:
    $ less /etc/*{release,version}*
    or if you don't want to learn/use less' next/prev file controls & are willing to have a more complicated command:
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...