Skip to content
The Programming Review

The Programming Review

A Developer Resource

Recent Posts

  • Password-less auto-login with SSH
  • More Linux Commands
  • Linux basic commands
  • Debian/Ubuntu Package Installation
  • Protected: Project Deliverables

Recent Comments

    Archives

    • March 2019
    • February 2019
    • January 2019
    • December 2018
    • November 2018
    • October 2018
    • September 2018
    • August 2018
    • June 2018
    • May 2018
    • April 2018

    Categories

    • Build Tools
    • CheatSheet
    • CMS
    • Coming Reviews
    • Command Line Productivity
    • Database
    • Exercise
    • For Study
    • GUI Development
    • HowTo
    • Linux Apps
    • Linux System
    • PHP
    • Productivity Tips
    • Programming Languages
    • Resources
    • Web Development

    Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org

    Tag: Linux

    Linux basic commands

    Manual page for a command

    $ man <cmd>

    Example:

    $ man ps

    View running processes

    $ ps aux

    Filter processes

    $ ps aux | grep olga

    Kill a process

    $ kill <PID>

    If process is stubborn

    $ kill -9 <PID>

     

    Posted on 23. March 2019Categories Linux SystemTags commandline, Linux

    Debian/Ubuntu Package Installation

    $ sudo apt install <package-name>

    GUI frontend to apt:

    $ sudo synaptic

    If you have downloaded a <xxx>.deb file

    $ sudo dpkg -i <xxx>.deb

     

    Posted on 23. March 2019Categories Linux SystemTags Linux

    Command Line Tools

    fzf – Fuzzy Finder: https://github.com/junegunn/fzf

    Essential System Tools: pet – command-line snippet manager

    Graph generation tool: Mermaid – https://github.com/mermaidjs/mermaid.cli

    Simple UML diagrams. There is also an Atom plugin.

    Find number of cores:  https://www.ostechnix.com/find-number-cpu-cores-commandline-linux/

     

    Posted on 26. January 20197. February 2019Categories Command Line ProductivityTags CLI, commandline, Linux

    Effective awk Programming, 4th Edition

    Well written book on a useful programming tool. Continue reading Effective awk Programming, 4th Edition

    Posted on 21. December 2018Categories Command Line Productivity, Programming LanguagesTags awk, Linux, scripting
    Proudly powered by WordPress