WebSphere Application Server & Liberty

WebSphere Application Server & Liberty

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  linux commands

    Posted Fri August 09, 2013 04:18 PM
    hello, can you guys please send me the linux commands such as grep, netstat ...etc, that you use in real time. please.. thank you.
     


  • 2.  linux commands

    Posted Fri August 09, 2013 10:23 PM
    Here are some I use often ..
    telnet, ftp, ssh, scp, transfer
    Overview on command line basics - telnet, ftp, ssh, scp, transfer   
    Scripting with xargs - examples
    Create a Linux daemon as a service - example 1   
    Linux scripting basics
    Network performance utilities    UTS Linxu planning docs site

    Check system info
        cat /proc/meminfo
        cat /proc/cpuinfo
        ls /proc
        which $SHELL

    Linux basics
    bash shell cmd list    wiki.typo3.org/Linux_cheat_sheet

    Linux from Scratch    
    vi search - replace examples    
    Linux / Tomcat admin basics - vi     
    Linux file permission management examples     Linux secure transfers basics - ftp ssh     

    Show sudo commands available to current user
    sudo list


    List file names that have a matching text string updated in the last 3 days
    find ./ -iname "*log" -mtime -3 -exec grep -il "error" {} \;  > __log_search1.txt


  • 3.  linux commands

    Posted Mon August 12, 2013 04:44 PM
    thank you