commandline or gui for package management?

Discussion in 'all things UNIX' started by lodore, Mar 14, 2011.

Thread Status:
Not open for further replies.
  1. lodore

    lodore Registered Member

    Joined:
    Jun 22, 2006
    Posts:
    9,065
    Hello,
    i was wondering which method people prefer to use for package management on linux?

    for updates I normally prefer the commandline.

    if I know the name of the package I prefer commandline.

    searching for software and adding repos is easier with gui but i find the gui quite alot slower to load and refresh.
    I am slowing doing all my package management from commandline.
     
  2. chrisretusn

    chrisretusn Registered Member

    Joined:
    Jun 16, 2004
    Posts:
    1,672
    Location:
    Philippines
    I do this via tha command line only.
     
  3. wat0114

    wat0114 Guest

    The command line is faster and if I know what to type, I'll use it, but I'm still far more comfortable using the gui.
     
  4. zapjb

    zapjb Registered Member

    Joined:
    Nov 15, 2005
    Posts:
    5,557
    Location:
    USA still the best. But barely.
    I use GUI except when getting drivers or other programs that aren't in the repository.
     
  5. chronomatic

    chronomatic Registered Member

    Joined:
    Apr 9, 2009
    Posts:
    1,343
    I use the command line and then edit .bashrc to give each command a short alias.

    I use Ubuntu, so to update the repos the command is:

    Code:
    sudo apt-get update
    I made an alias, so that all I have to type is

    Code:
    update
    Similarly if I want to search for packages, the normal command is:

    Code:
    sudo apt-get search <keyword>
    I have an alias, so that all I have to type is

    Code:
    search <keyword>
    You can make an alias for any command you choose. You just have to make sure the alias command does not conflict with other bash commands.
     
  6. mack_guy911

    mack_guy911 Registered Member

    Joined:
    Mar 21, 2007
    Posts:
    2,677
    command like is fast and good but problem with command line is it so fast and good that it take all your bandwidth so i prefer gui .....slow but use full i make click on update and let do in background while i surf on net :D

    where if i do same with command like it make browser work so slow :p
     
  7. tlu

    tlu Guest

    Same here. Since I'm a lazy guy, I created the following aliases in ~/.bash_aliases :
    Code:
    alias u="sudo apt-get update ; sudo apt-get upgrade"
    alias U="sudo apt-get update ; sudo apt-get dist-upgrade"
    alias i="sudo apt-get install"
    alias r="sudo apt-get remove"
    alias s="wajig search"
    alias S="wajig show"
    alias up="sudo apt-get dist-upgrade"
    alias ar="sudo apt-get autoremove"
    So after logon, the first thing I do is to press F12 to open Tilda and execute U. Simple and fast.

    I mostly use Synaptic for this as I find it more comfortable.
     
  8. tlu

    tlu Guest

    There is no apt-get search, IMHO. The search option is only available for apt-cache and apt-file. Or in wajig as suggested above.
     
Thread Status:
Not open for further replies.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.