Results 1 to 8 of 8

Thread: An Easy Installer?

  1. #1
    Junior Member
    Join Date
    Mar 2004
    Location
    Portland, Oregon
    Posts
    1

    An Easy Installer?

    Is there a program that makes installing downloads VERY simple??? im tired of makefile bla bla bla

  2. #2
    Senior Member registered user
    Join Date
    Nov 2002
    Posts
    1,353
    Yes. It's called apt. Try looking at the documentation regarding it. IMHO it's the best installer on any OS.

    BTW, this forum is not really for questions, but for posting nice "nice and tips" that you've discovered and want to share with others. I'm moving it to the general forum.

  3. #3
    Senior Member registered user
    Join Date
    Dec 2003
    Location
    Salt Lake City, UT, U.S.A.
    Posts
    1,338
    Hello patchdesigner,

    Welcome to General Support Forum...

    Apt is about the best package/program locator, installer, de-installer, and all around "something" that can muck up (been there done that) thingy...

    Four (mostly) used apt's commands:
    apt-get update
    apt-get install
    apt-get upgrade
    apt-cache search

    Before doing anything, you want to run apt-get update -=- this command downloads the current programs/packages that are available... (and places them in a database for searching/installing)

    You can use "apt-cache search [something]" - to locate a package/program that interests you... If you were interested in installing a firewall, then the following search would return packages/programs with that criteria:

    apt-cache search firewall

    Once you know what you want to install, a simple apt-get install will work... as an example, lets say the package you want is "GuardDog" - the following would download the package, install it, and all, if any, support libs or files, and set it up for you...

    apt-get install guarddog

    Lastly, is the upgrade, but I prefer not to use it, it always seems to muck up my system everytime I use it, but, to upgrade to the most current packages that are currently installed on your system, you would do the following:

    apt-get upgrade

    I am sure that the docs on this web site cover most of these, and a "man apt-get" will give you the manual pages for this command, but this is a little more personal - just to get you started...

    Hope this helps,
    Cuddles

  4. #4
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Germany
    Posts
    1,159

  5. #5
    Junior Member
    Join Date
    Apr 2004
    Posts
    4
    Cuddles said: "Lastly, is the upgrade, but I prefer not to use it, it always seems to muck up my system everytime I use it, but, to upgrade to the most current packages that are currently installed on your system, you would do the following:

    apt-get upgrade"

    well, gee, if apt cant upgrade then maybe its not that great after all. but i suppose it is the best installed ATM... upgrading is definitely a weak area for linux, IMHO

  6. #6
    Senior Member registered user
    Join Date
    Jan 2003
    Location
    Podunk, Idaho, USA
    Posts
    470
    I use apt-get update and apt-get upgrade almost every day on my systems at school on broadband.

    Use apt-get -s upgrade to simulate your upgrade and see what it is going to install and remove, if it wants to remove a hundred or so packages don't do it! The problem lies not so much with apt-get as much as with knoppix being made from packages from the testing (sarge), and unstable (sid) versions of debian. The only apt-get upgrade problems I have ran into recently are with things like KDE which is hundreds of packages some of which contain the same files so dpkg will error out with an error something like file blah-blah-blah-3.2.1_i386.deb is also in package someting-else. In this instance you have to use dpkg --force-overwrite -i to install the package. Do a search here for force-overwrite to see more info on that command and when people have had to use it.

    Also often times with knoppix you have to specify the repository if apt-get install some-package fails try apt-get -t unstable install some-package to get the package from unstable instead of from testing. You can also try apt-get -t unstable -s upgrade and see what that would do.

    HTH

    ~rock

  7. #7
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    Europe
    Posts
    148
    Pretty sure I read on these forums not so long ago a way of updating 'non-blindly' - use 'apt-get *soemthing* > list.txt' to generate a text file that lists all packages apt will upgrade if you upgrade blindly. Read/edit (remove packages you do not want to update) the text file, then run apt again supplying the text file as an argument, e.g. 'apt-get *whatever* < edited_list.txt'.

    Last time I searched for the thread on this I oculdn't find it - could someone post the right commands please?

  8. #8
    Senior Member registered user
    Join Date
    Dec 2003
    Location
    Salt Lake City, UT, U.S.A.
    Posts
    1,338
    C123,

    I think I saw the exact same thing, but, what I remember was it was a form of "backup" of apt-get install -=- so, if upgrade blew up your installs, you could "revert back" to what you had previously

    It did see the "porting" output to a file, as the form of backup, and after running a "apt-get upgrade" your system was trashed, you could point the "backup" file into "apt-get" to revert back to what things were "before" the upgrade. I think it used dpkg though, possibly why a search for this is not coming up. I had a problem with upgrade ONLY because of the reasons mentioned here. I had Xine working fine, did a upgrade, and the Xine package was upgraded, but not the DVD library that ALSO needs to be upgraded with it. Result ended up making Xine not able to play my DVDs, a WONDERFUL Guru here just had to point me to another "update" of the DVD library that worked with the Xine upgraded package - and it worked fine.

    apt-get upgrade works, its a great idea, and in "most" cases, does what it has to do - it just has a lot of work to do, and has to make "judgement" calls when two packages are going to be upgraded that "conflict" with each other. If package "A" needs library "D", and package "B" needs to use library "C" - and package "A" used to use library "C" as well -=- apt-get has to determine which package is going to do what, and possibly at the cost of one of the packages not getting what it needs.

    If you read the man pages on apt-get, which helped me understand why I kept having problems whenever I did a upgrade, you realize just how "powerful" apt-get really is - amazing it isn't some form of AI programming, due to its decissions it has to make...

    here is an example:

    Package A - operating system module - uses library E and F...
    Package B - open office program - uses library F, G, and H...

    doing an apt-get upgrade, apt-get realizes that "Package A" needs to be upgraded, but not "Package B" - if it does upgrade "Package A", "Package B" will be broken because they both have the same "Library F" in them. Now apt-get "may" look to see if it can find a way to upgrade "Package B", along with "Package A" and "Library F", but it will also need to find (possibly) upgraded libraries for G and H to make dependencies for "Package B" if it is upgraded.

    This, being a simple two package situation, you need to add into this, the complexity of what apt-get upgrade has to deal with, possibly hundreds of these "dependancy" issues when you run the command, and all the "decissions" it has to make. It is, no wonder, it can possibly mess something up when you do a upgrade, with all the decissions it has to make on which one is more important, and which one can be "broken".

    I am sorry if my "parania" has caused anyone to be "scared" of apt-get, in particular, upgrade, but, I have had to many times that the "upgrade" has made decisions that have caused "something" not to work, and it did before the upgrade. I am quite sure the upgrade did its job, it upgraded something "important" over something less important, which is what, if you read the man pages, it is SUPPOSED to do. Xine is NOT that important, especially the "dvd" library that was broken, during the upgrade. I was able to get it resolved, and I am pretty sure, that the upgrade DID upgrade something that was a LOT more important than just a Xine library, possibly something that kept my system running, so, my parania is probably not justified. I just don't like my system to just "start" having problems, when it was working fine BEFORE I did a upgrade.

    Again, sorry if my "phobic" reactions have caused anyone any alarm,
    Cuddles

Similar Threads

  1. Several easy questions -- help
    By ricesteam in forum General Support
    Replies: 2
    Last Post: 04-01-2005, 05:34 PM
  2. Wow! That was EASY!!!
    By Xorpid in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 05-21-2004, 02:37 AM
  3. Probably an easy question
    By dhawton in forum Customising & Remastering
    Replies: 1
    Last Post: 09-02-2003, 09:26 PM
  4. Easy way to remaster?
    By rihad in forum Customising & Remastering
    Replies: 7
    Last Post: 07-02-2003, 06:18 AM
  5. how easy is it to do?
    By a.lost.soul in forum Customising & Remastering
    Replies: 2
    Last Post: 01-23-2003, 09:19 PM

Posting Permissions

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


A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G picture

A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G

$13.99



HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin picture

HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin

$12.90



A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G picture

A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G

$13.99



HyperX FURY RAM DDR4 16GB 8GB 32GB 4GB 3200 2666 2400 2133 Desktop Memory DIMM picture

HyperX FURY RAM DDR4 16GB 8GB 32GB 4GB 3200 2666 2400 2133 Desktop Memory DIMM

$9.64



Lot of 2 32GB DDR4 2666 PC4-21300 SODIMM RAM Modules Mixed Brand picture

Lot of 2 32GB DDR4 2666 PC4-21300 SODIMM RAM Modules Mixed Brand

$60.00



Samsung 128GB (4x 32GB) M86B4G70DM0-CMA3 PC3-14900L 4Rx4 DDR3 ECC Reg Server Mem picture

Samsung 128GB (4x 32GB) M86B4G70DM0-CMA3 PC3-14900L 4Rx4 DDR3 ECC Reg Server Mem

$39.99



Samsung 16GB 2Rx4 PC4-2400 RDIMM DDR4-19200 ECC REG Registered Server Memory RAM picture

Samsung 16GB 2Rx4 PC4-2400 RDIMM DDR4-19200 ECC REG Registered Server Memory RAM

$20.99



8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A picture

8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A

$12.00



A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM picture

A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM

$287.96



A-Tech 128GB 2x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM picture

A-Tech 128GB 2x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM

$143.98