Results for "Linux"

Wire posts

  • To know about your OS: lsb_release -ra #Trick #OS #Linux

    2844 days ago

  • Sync your broken transfer in Linux rsync -e ssh file host:/directory/. #rsync #scp #Linux

    2828 days ago

  • Determine your current Java version in Linux OS: java -Xmx90m -version #Java #Linux #Version

    2808 days ago

  • du -sh * will give you the size of all the directories,files etc in current directory in human readable format. #Linux #Size #Tricks #Folders #Files

    2802 days ago

  • Find a file with certain size and delete them: $ find . -name "see-D-d-ALN_*" -size -10k -delete #Delete #Size #Linux #Tricks

    2788 days ago

  • Contact many files: $ for a in *.txt ; do cat $a >> newFile ; done #Linux #Tricks

    2788 days ago

  • Little correction, I guess you mean concatenate many files: $ for a in *.txt ; do cat $a >> newFile ; done #Linux #Tricks

    2787 days ago

  • Number of thread in Linux: echo $(( `ps axms | wc -l` - 1)) #Thread #Info #Linux

    2778 days ago

  • Split the text file with line number in Linux: wc -l abc.txt and then: split -l 60000 abc.txt #Split #Break #Line #Ubuntu #Linux #Tricks

    2770 days ago

  • List all kernels dpkg --get-selections | grep "linux-image-[[:digit:]].*" | tr "\t" ";" | cut -d ";" -f1 #Kernels #Linux #List

    2738 days ago