Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 42

Thread: how do people remember lots of commands..??

  1. #21
    Join Date
    Jan 2006
    Location
    Highland, IN - USA
    Beans
    1,285
    Distro
    Ubuntu Development Release

    Re: how do people remember lots of commands..??

    For me, it has always been repetition. The more you use any command, the easier it is to remember it

    Off the top of my head, I use the following regularly enough that I remember them quite easily...

    sudo apt-get update
    sudo apt-get upgrade
    sudo apt-get install <package name>
    sudo apt-get remove --purge <package name>
    sudo apt-get install -f
    sudo apt-get autoremove
    sudo apt-get clean
    sudo apt-get autoclean
    Last edited by Uncle Spellbinder; November 5th, 2012 at 04:42 PM.
    Friedrich Nietzsche: "Without Music, Life Would Be A Mistake" - So, what album are you NOW PLAYING?

    My Last.FM | My Original Music at Jamendo

  2. #22
    Join Date
    Jun 2008
    Location
    Mumbai
    Beans
    223
    Distro
    Ubuntu

    Re: how do people remember lots of commands..??

    sudo apt-get
    is the first step towards being advance user in linux

  3. #23
    Join Date
    Dec 2010
    Location
    Fukuoka, Japan
    Beans
    1,064
    Distro
    Kubuntu 14.04 Trusty Tahr

    Re: how do people remember lots of commands..??

    I just learn through regular use. I started out learning basic navigation (cd, ls, mv, cp etc) then learned commands to acquire system information because my old computer sucked and always had problems. (Great guide here by the way: http://www.cyberciti.biz/tips/linux-...ux-system.html) Then I learned package managing stuff like apt-get, apt-cache, and dpkg. And so on.... I basically just learn something when the need arises. Im to the point now where I dont need to look at man pages for most things, and then when I get stumped, I at least know where to start looking. Just keep using the terminal and Im sure that youll get the hang of it and learn a lot.

  4. #24
    Join Date
    Jun 2008
    Location
    Mumbai
    Beans
    223
    Distro
    Ubuntu

    Re: how do people remember lots of commands..??

    oh nice one sir...

  5. #25
    Join Date
    Feb 2007
    Location
    Waco, Texas
    Beans
    354
    Distro
    Xubuntu 18.04 Bionic Beaver

    Re: how do people remember lots of commands..??

    I only remember maybe 10-15 often used commands (ps, ls, cat, man, apt-get, dpkg, grep, and a few others), but once I use a command with some lengthy options I almost always just pull it out of bash_history instead of trying to memorize what I did. I never clear out my history, so I generally have a lengthy history to refer back on.
    System76 Pangolin Performance 5 - Xubuntu 18.04 LTS
    System76 Darter Pro - Pop_OS 18.04 LTS

  6. #26
    Join Date
    Dec 2010
    Beans
    Hidden!

    Re: how do people remember lots of commands..??

    As long as I have the net available, Google and copy/paste I can use the terminal


    404

  7. #27
    Join Date
    May 2006
    Location
    Milwaukee,WI
    Beans
    6,280
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: how do people remember lots of commands..??

    Quote Originally Posted by rushikesh988 View Post
    hello all ,
    I am the ubuntu user since 6.06 but let me tell you . I have always found it very complex task to remember commands of linux.

    I have also seen that many users here solving problems only with commands (and yes hats off to the forum staff they just rock with their knowlege base)
    I mean there are hundreds (probably thousands not sure) of commands for linux and with there arguments it becomes the huge list ..


    I have tried using

    but its still a complex thing to remember ...
    Is there is any special trick except practicing it ???
    simply put, the commands you use and practice frequently you won't ever forget.

  8. #28
    Join Date
    Feb 2011
    Location
    Columbus, OH
    Beans
    119
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: how do people remember lots of commands..??

    Over time, its like remembering anything else.. Complex commands that i might use are also in history, if for some reason i had command-block that day.
    Toshiba Satellite L875-s7230 / A6 2.7ghz dual-core piledriver w/ ATI Radeon HD 7520G / 8GB Corsair Vengeance DDR3-1600 RAM / 500 GB Seagate Momentus XT formatted JFS. >Wifi Drivers for this machine< My Deviant Screenshots

  9. #29
    Join Date
    Apr 2009
    Beans
    1,343
    Distro
    Xubuntu

    Re: how do people remember lots of commands..??

    Wow, thanks!

    Code:
    gedit .bash_history
    Never new of this. And, I was maintaining a "stupid_file", for myself. Duh!

    Another one, I didn't know:

    Code:
    Ctrl-R search
    Like, I could ever get so good to remember something like this:

    Code:
    sudo dpkg --get-selections | grep '[[:space:]]install$='| awk '{print $1}' > installedpackages
    Last edited by mikodo; November 6th, 2012 at 06:53 PM.

  10. #30
    Join Date
    Oct 2008
    Beans
    3,509

    Re: how do people remember lots of commands..??

    On using bash history.
    Running these 2 commands...
    Code:
    echo "\"\e[5~\": history-search-backward" >> ~/.inputrc
    echo "\"\e[6~\": history-search-forward" >> ~/.inputrc
    Binds pageup to history-search-backward....Binds pagedown to history-search-forward.

    So if I enter sudo dpkg I can cycle through all the history commands starting with sudo dpkg, using pageup and pagedown.

    How did I know this? Looked in my 4 years worth of gnotes.
    Last edited by stinkeye; November 6th, 2012 at 08:03 AM.

Page 3 of 5 FirstFirst 12345 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

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