Find the answer to your Linux question:
Results 1 to 5 of 5
Hello, I just want to introduce myself. I am a 58 year old disabled vet. I have Mandrake which i dual boot on a dell. I am trying to see ...
  1. #1
    Just Joined!
    Join Date
    Jul 2008
    Location
    N.E. Florida
    Posts
    0

    Newbie

    Hello, I just want to introduce myself. I am a 58 year old disabled vet. I have Mandrake which i dual boot on a dell. I am trying to see if this OS will be right for me. It seams to be very stable but for the life of me I can not figure out how to install programs I get off of the net. I have went to the hot to sites and read about installing Tar.2BZ but when I try to follow the instructions nothing happens. It is driving me crazy. This is the same problem that caused me to quit trying Linux a few years ago. Like they say it is hard to teach an old dog new tricks.

  2. #2
    Linux User glennzo's Avatar
    Join Date
    Sep 2004
    Location
    Salem, Mass
    Posts
    434
    Hi racolavito. .tar.b2z files usually need to be extracted to a folder and then you need to build the program. Something like this:
    Code:
    tar xvfz program.tar.b2z
    cd /folder extracted to
    ,/configure
    make
    make install
    In my experience there will not be a menu entry for the program so you will need to find it and then run it with the command ./program.

    So, if you downloaded a program called cardgame you would open a terminal and change to the folder holding that file. Let's say it saves to the desktop. In a terminal:
    su -
    enter password
    cd Desktop
    tar xfvz cardgame.tar.b2z
    cd cardgame
    ./configure
    make
    make install
    ./cardgame
    Your card game should run, provided there were no compile errors.

    Note that I'm not all that confident that tar xfvz is the proper command to extract a .tar.b2z file so a little research on that will go a long way. It's a start though.

    Edit. Since I thought that my advice was not all that accurate I got myself a .tar.bz2 file and extracted it. The command I used, as root, was
    tar xfv wicd_1.4.2-src.tar.bz2
    This successfully extracted the contents and created folders on the desktop.
    Glenn
    Powered by Fedora 16 and Arch Linux

  3. #3
    Linux Guru rokytnji's Avatar
    Join Date
    Jul 2008
    Location
    Pecos, Texas
    Posts
    2,940
    Hi Raco,welcome to the forun.
    Linux Registered User # 475019
    Lead,Follow, or get the heck out of the way
    AntiX,Puppy,Ubuntu,Windows 7=(cuz of scooters)
    Open CourseWare for Linux Geeks

  4. #4
    Trusted Penguin elija's Avatar
    Join Date
    Jul 2004
    Location
    Either at home or at work or down the pub
    Posts
    2,287
    Hi racolavito and welcome to the forum.

    I believe that Mandrake is quite an old distro, it is known as mandriva now. It may be worth downloading and installing the that instead as the hardware support will be much better among other fixes and enhancements.

    One of the main differences between Windows and Linux is how software is normally installed. In Windows you find the software on the interweb, download and install it. In Linux, you can do this. More usually you would find and download the software you want from your chosen distributions repository using what is called a package manager.

    I have no direct experience of Mandrake / Mandriva so I can't be more specific I'm afraid.
    If we hit that bullseye, the rest of the dominoes will fall like a house of cards. Checkmate! (Zapp Brannigan)


    My new blog. It's probably not as good as I think it is.

  5. #5
    Linux Engineer Freston's Avatar
    Join Date
    Mar 2007
    Location
    The Netherlands
    Posts
    1,047
    Hi and welcome!

    Quote Originally Posted by racolavito
    Like they say it is hard to teach an old dog new tricks.
    Those are your words, not mine

    But indeed Mandrake is an older distro. You might improve your chances running something more up to date. You can try Mandriva if you feel you want something from that lineage. Most things you might want are easily accessible from the repo. I'm not exactly sure how that is called in Mandriva (it's bin a while) but it shouldn't be to hard to find somewhere in the menu.

    For people content with mainstream applications in their stable releases just the repo's should do nicely. Not everyone is searching for the bleedin' edge developments and obscure applications that offer just that one functionality that's needed for some highly specialized task. Generally speaking what's in the repo's is enough to keep you going for a long time.
    Can't tell an OS by it's GUI

Posting Permissions

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