Announcement

Collapse
No announcement yet.

Some command line questions

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Some command line questions

    How would I specify Konsole to download a program but not automatically install it? Just save it somewhere as a .deb file. Also, what command would I use to tell Konsole to update a particular program? Thanks.

    #2
    Re: Some command line questions

    To download but not install a .deb file (you don't need to be root):
    Code:
    aptitude download whatever
    To update a particular program:
    Code:
    sudo aptitude update; sudo aptitude install program-name
    If you want, you can checkout aptitude's other features by running this from Konsole:
    Code:
    aptitude --help
    Also, if you would like to read the manual, you would enter this:
    Code:
    man aptitude
    You can usually run both of those for any command line application.
    Asus G1S-X3:
    Intel Core2 Duo T7500, Nvidia GeForce 8600M GT, 4Gb PC2-5300, 320Gb Hitachi 7k320, Linux ( )

    Comment


      #3
      Re: Some command line questions

      I downloaded a .deb program using "aptitude download whatever", but don't know where it was downloaded to. Can you specify a place before hand using Konsole?

      Comment


        #4
        Re: Some command line questions

        It downloads the .deb to whichever directory you're in at the time; it's probably in your /home/[username]/ directory.
        Asus G1S-X3:
        Intel Core2 Duo T7500, Nvidia GeForce 8600M GT, 4Gb PC2-5300, 320Gb Hitachi 7k320, Linux ( )

        Comment

        Working...
        X