Results 1 to 8 of 8

Thread: My first time

  1. #1
    Join Date
    Oct 2011
    Beans
    8

    My first time

    So this is my first time posting here so I thought my title would be fitting. I just got an old gateway desktop from a friend and since windows xp was running very slow I decided to try something new and just put xubuntu on to it. So far all I have done is install and get the updates. I was wondering, I did look around but I more then likely missed it, where is a good place to start learning about this new system? I am pretty new to this os since is my first time ever installing a linux system. Any advise or a point to right direction would be awesome.
    Also I was wondering how do I figure out what I have in this desktop without opening it open and looking? I tried to find a model number but didn't find anything. I found the task manager and I know this beast has a 256mb ram and 20g harddrive. This thing I old so I wanna start playing around with it and see what I can do to make this worth having. I wanna learn more about computers so I am open to the idea of complete rebuilding this, just unsure how to start.
    Thanks in advance for any advise.

  2. #2
    Join Date
    Feb 2009
    Location
    Dallas, TX
    Beans
    7,790
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: My first time

    Hi biohzrd87. Welcome to the forums!

    The best way to learn is to ask questions. There's a few tricks to make the most out of the forums. Start taking a look at this post.

    Since you are wondering what's inside your machine, here's a few tips:
    To get all you hardware details:
    Code:
    sudo lshw
    To get details about your graphics you can use this two commands:
    Code:
    sudo lshw -C display
    
    lspci | grep -i vga
    To see how much memory you have, and how much is being used:
    Code:
    free -m
    To learn how much space your partitions have:
    Code:
    df -h
    To see details about your connected USB devices:
    Code:
    lsusb
    I hope that helps, and keep asking questions.
    Kind Regards.

  3. #3
    Join Date
    Mar 2007
    Location
    A bit further from nearby
    Beans
    Hidden!
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: My first time

    Welcome to the forum. You have come to the right place to ask and learn about Ubuntu and Linux in general.

    Aside from this forum, there are websites dedicated to Ubuntu and/or Linux/Open Source Softwares that you might find interesting. Sites such as: webupd8 and omgubuntu or tuxmachines are very informative. And do check Official Ubuntu Documentation site also.

    Regarding your system, you can perform some commands in terminal to find out about your hardware specifications. Here are some examples:

    Code:
    sudo lspci
    and

    Code:
    sudo lshw
    Hope that helps, and may others fill in with more info as well.

    Edit: papibe got it first and with more complete answers as well

  4. #4
    Join Date
    May 2006
    Location
    Lake Placid, Florida, USA
    Beans
    2,019
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: My first time

    If you plan on working on it,I would recommend more RAM........ sites that sell RAN often let you how much your computer will work with and what type to buy.

  5. #5
    Join Date
    Apr 2010
    Beans
    58
    Distro
    Xubuntu 13.10 Saucy Salamander

    Re: My first time

    Quote Originally Posted by biohzrd87 View Post
    ... has a 256mb ram and 20g harddrive. ...
    Today i check RAM usage in Xubuntu (with opened Firefox) and Bodhi (with opened Firefox)
    Xubuntu use 150 MB, and Bodhi - 115 MB. It's less tham windows 2000 eating RAM
    Your's old machine still can run modern linux
    But anyway Ubuntu, IMHO, little too big.

  6. #6
    Join Date
    Oct 2011
    Location
    ZZ9 Plural Z Alpha
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: My first time

    Welcome to the forum!
    I'm pretty new here myself, so I won't play the knowledgeable old-timer, but-
    If you want to really understand the system and be at least somewhat smart about it, I'd strongly recommend learning how to use the command line interface, or CLI. For me, Linux became way easier to understand and was far less intimidating once I got comfortable with using the command line. And I will say too that being able to use the CLI opens up a whole new world of computing power to you. For me, it's really exciting!
    I learned a lot using this free book, and I can highly recommend it even if it is a bit dated- http://www.math.hcmuns.edu.vn/~ngson...n_24_hours.pdf.

    Happy trails!

  7. #7
    Join Date
    Oct 2011
    Beans
    8

    Re: My first time

    Awesome thank you all for the feedback. I'm at work right now reading this so when I get home I'm gonna try out these and of course aske more questions.

    I really do wanna work on this computer so the RAM is my first concern. Since I really know nothing about this computer what should I look to figure out what kinda of RAM to get?

    Thats all have now but I may have some more tech questions once I get home.
    Again thanks for the help so far this is awesome.

  8. #8
    Join Date
    Sep 2007
    Location
    Oklahoma, USA
    Beans
    2,378
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: My first time

    Tou're going to find the report from "sudo lshw" a bit overwhelming at first; it will tell you much more than you want to know at this stage of your learning curve!

    For the details of your RAM, look for something similar to this:
    Code:
         *-memory:0
              description: System Memory
              physical id: 10
              slot: System board or motherboard
              size: 3GiB
            *-bank:0
                 description: DIMM DDR2 800 MHz (1.2 ns)
                 product: HYMP112U64CP8-S6
                 vendor: AD00000000000000
                 physical id: 0
                 serial: None
                 slot: A0
                 size: 1GiB
                 width: 64 bits
                 clock: 800MHz (1.2ns)
            *-bank:1
                 description: DIMM DDR2 800 MHz (1.2 ns)
                 product: M3 78T5663QZ3-CF7
                 vendor: CE00000000000000
                 physical id: 1
                 serial: None
                 slot: A1
                 size: 2GiB
                 width: 64 bits
                 clock: 800MHz (1.2ns)
    It will be near the start of the report, and the details will differ a lot, because this report is from my machine here with 3 GB of RAM. However, you should have at least one "bank" line, and it should contain a "description" line at the minimum. The key thing in this description is the "DDR2 800 MHz" part, which says that my two memory sticks are the 800-MHz DDR2 variety. With only 256 MB in your system, yours are likely to be either PC-100, PC-133, or DDR. The various types are NOT interchangeable, so this is essential info before you go shopping for additional RAM.

    Also I didn't see anyone warn you that when you type your password as requested by "sudo" you won't see any indication at all that it's being accepted, unlike most other places where the system asks for your password. That's a common complaint for newcomers; we all expect some sort of feedback that the keys are being recognized! Worry not, just type it in carefully and things will work.

    And welcome to this great world of promise and freedom. Don't worry much about breaking the system while you're learning; we've all done it, most of us multiple times!
    --
    Jim Kyle in Oklahoma, USA
    Linux Counter #259718
    Howto mark thread: https://wiki.ubuntu.com/UnansweredPo.../SolvedThreads

Bookmarks

Posting Permissions

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