as i wait for the new kernel that will get my wireless working
i came across this tutorial to enable and test that TRIM is in fact working on the linux os
. all things go fine untill i try to create the test file and i get the command not found
. this is the command in question: 
su techgage Desktop # seq 1 1000 >
this is suppose to create a file of sequential #'s from 1 to 1000. further along in the tut you read the file, delete the file, clear the cach or buffers then re read the file and should get all zero's if TRIM is in fact working. this is the tut link 
http://techgage.com/article/enabling_and_testing_ssd_trim_support_under_linux/1
is there an equivilent command (techgage) for our particular cm or is this in fact an actual program that maybe in the repos? 
Oh my Lou, Lou you silly boy.

This is not the command to run "techgage Desktop # seq 1 1000 > testfile" the command should be
seq 1 1000 > testfileYou want to execute everything after the # sign.

so it would look like this at the command line prompt.
seq 1 1000 > testfile
hdparm --fibmap testfile
sync
hdparm --read-sector 49598792 /dev/sda
Each line above is to be entered at the prompt. IE:
[root@localhost ~]# hdparm --read-sector 49598792 /dev/sda
Replace "sda" with your SSD device.
You silly boy, techgage is the username of his machine not some mystical command.
