Still running, biking, swimming…
Last Run
5.05 mi
00:46 /09:10 pace
http://bazaar.rungap.com/showit.html#rWNmQtb28sA_ivPE3kSTGA posted yesterday
- Week Miles
- 10 mi
- 2013 Miles
- 225 mi
- Total Miles
- 3660 mi
-
Recent Posts
Blogroll
Tags
2011 cruise Amino 500 asthma barefoot barefoot running Broadweave church dad diy facebook FreeBSD hockey iPhone iProvo IT Band lifeproof Linux Lucy Mac Macbook MStar nashville Nathan's Music nhl Nuvont OC Tanner playoffs provo river trail Reagan red wings Roxie Running sharks shin splints Snow swimming tabs trail running triathlon tweets twitter updates utah lake Veracity Wendy Wordpress
Tag Archives: Linux
A nice way to get infomation out of an "ls"
ls -ltdr is what Tony from work taught me.
When trying to rm a bunch of files, you get "Argument list too long"
http://www.redantigua.com/xargs.html teaches that you can do this: find . -name “*” -print | xargs rm
How to tell if a linux server is 64 or 32 bit:
uname -m i386 or i686 then it is 32 bit x86_64 is 64bit Thanks to Linux Forums for the answer.
How to determine the disk size of a Linux box
fdisk -l | grep Disk
How to find a directory in Linux/UNIX
find / -name directoryname -type d
A cool, government guide to hardening your systems…
http://www.nsa.gov/snac/index.cfm?MenuID=scg10.3.1
How to tell if a package is installed on an RPM distro…
rpm -qa | grep -i <package>
How to rdesktop over ssh
Run “ssh -L 3389:[target machine]:3389 user@serverip” on local machine.
I want to learn more about public and private encrypted keys…
Here’s a website that seems pretty cool… http://www.dewinter.com/gnupg_howto/english/GPGMiniHowto-3.html#GPG-Minihowto-KPAdministration
There is a great website on reading man pages:
http://polishlinux.org/console/the-art-of-using-manuals/