Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 31

Thread: question about linux

  1. #21
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: question about linux

    Quote Originally Posted by Cymae View Post
    or see if you can dig up an old LindowsOS distro
    i think i have one of them in my cd wallet


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  2. #22
    Suffering from Multiple OS Disorder PartyLikeARockstar's Avatar
    Join Date
    Mar 2008
    Location
    Baltimore (hopefully soon Edgewood) MD
    Posts
    215

    Default Re: question about linux

    Vector Linux is good too, I am surprised to not see it mentioned.
    water-cooled m-atx: (sold)
    http://www.thebestcasescenario.com/f...ad.php?t=15368
    Diary Of a Caffeine Junkie: Powered by Rockstar (dead)
    http://www.thebestcasescenario.com/f...ad.php?t=13786

  3. #23
    Custom Title Honors Liquid_Scope_99's Avatar
    Join Date
    Sep 2007
    Location
    Alabama
    Posts
    1,048

    Default Re: question about linux

    I got DSL to work but not Xubuntu i couldnt get it to work but havent had the chance to work with it latley

  4. #24
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: question about linux

    sometimes if your installing on limikted hardware you will need what is normally called a alternitive install cd, this isn't a live cd but will install using a very light installer, usualy annaconda


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  5. #25
    Custom Title Honors Liquid_Scope_99's Avatar
    Join Date
    Sep 2007
    Location
    Alabama
    Posts
    1,048

    Default Re: question about linux

    hey thanks XcOM +rep

  6. #26
    Practice random acts of generosity Omega's Avatar
    Join Date
    Feb 2006
    Location
    A house
    Posts
    4,577

    Default Re: question about linux

    Quote Originally Posted by XcOM View Post
    i would say earlier ubuntus are better for older hardware as they require less oomph to run, but have a harder learning curve, newer ubuntus generaly have become more automated, a bit more like windows so to speak.
    I can attest to this. I'm running Kubuntu Hardy (soon to be on KDE4.1.2, too) on my laptop and if my wireless card wasn't such a strange make/model it would have been completely brainless.



    i5-3570k @ 4.40GHz // R9 380X @ 1020MHz // 2x Samsung 850 EVO SSDs // 2x 2TB HDDs
    Fractal Design Define R2 XL "Monolith"


  7. #27
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: question about linux

    generally i find it easier to install NDIS wrapper and install windows drivers than try to install linux versions


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  8. #28
    Practice random acts of generosity Omega's Avatar
    Join Date
    Feb 2006
    Location
    A house
    Posts
    4,577

    Default Re: question about linux

    Quote Originally Posted by XcOM View Post
    generally i find it easier to install NDIS wrapper and install windows drivers than try to install linux versions
    for sure

    (unlock/add all repositories you will need first)
    First find out what kind of chipset you have by doing
    Code:
    lspci
    then install the driver, assuming you don't need to blacklist a non-working driver (like I had to with my Marvell mrv8k chip)
    Then you wanna do this:
    Code:
    sudo apt-get install ndiswrapper
    sudo apt-get install ndiswrapper-utils-1.9 (or whatever the utilities one is)
    sudo apt-get install wicd
    mkdir drivers
    cd drivers
    wget [driver location]
    (untar only if it's a tarball... which it probably is)
    tar -xvf [tarball name]
    sudo ndiswrapper -i [driver.inf]
    sudo ndiswrapper -m
    cd ..
    rm -rf ./drivers
    What that does is it installs NDISwrapper, a util for installing windows wifi drivers, then you get the utils, meaning you can use ndiswrapper now, then it installs wicd, a good wifi/network manager program, mkdir drivers creates the folder /drivers under your home folder (which you operate under), wget is web get and will download a .zip or .tar file with the drivers in it, tar -xvf [tarball name] untar's or unzips your .tar or .zip, sudo ndiswrapper -i [driver.inf] installs the desired driver file as an administrator, sudo ndiswrapper -m rebuilds something or another to make it work, cd .. changes you back to your home directory and rm -rf ./driver deletes the folder /driver and all in it.

    To check if your ndiswrapper install worked, type
    Code:
    sudo ndiswrapper -l
    and it should show installed drivers and "device present"
    Last edited by Omega; 10-24-2008 at 05:40 PM.



    i5-3570k @ 4.40GHz // R9 380X @ 1020MHz // 2x Samsung 850 EVO SSDs // 2x 2TB HDDs
    Fractal Design Define R2 XL "Monolith"


  9. #29
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: question about linux

    or if your using ubuntu just find ndiswrapper and common in synaptic package manager and it does it all for you and adds a new menu entry to load windows drivers, even with fedora is easy as hell, load the RPM data and the same applies


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  10. #30
    Practice random acts of generosity Omega's Avatar
    Join Date
    Feb 2006
    Location
    A house
    Posts
    4,577

    Default Re: question about linux

    Quote Originally Posted by XcOM View Post
    or if your using ubuntu just find ndiswrapper and common in synaptic package manager and it does it all for you and adds a new menu entry to load windows drivers, even with fedora is easy as hell, load the RPM data and the same applies
    if you really want to you could just throw in a sudo apt-get install ndisgtk to the list of commands I wrote up, like so:

    Code:
    sudo apt-get install ndiswrapper
    sudo apt-get install ndiswrapper-utils-1.9
    sudo apt-get install ndisgtk
    wget [driver location]
    tar -xvf [tarball name]
    sudo ndisgtk
    then ndisgtk will pop up (graphical interface for ndiswrapper) and you tell it where the driver.inf file is, and it installs it.

    i know the command line might be scary for some but it's a hell of a lot easier to sudo apt-get install things if you know what you want than it is to go into Adept or whatever your distro's package manager is. goes by so much quicker.

    You also don't have to sudo before each command if you don't want to, only the first one, and you should stay logged in as sudo for 10 minutes on ubuntu distros. I sudo for each command only out of habit (older distros I used either required that you su root first or sudo before everything)



    i5-3570k @ 4.40GHz // R9 380X @ 1020MHz // 2x Samsung 850 EVO SSDs // 2x 2TB HDDs
    Fractal Design Define R2 XL "Monolith"


Posting Permissions

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