Readynas NV+ v2 “C: unprotected”

Firstly, do not put desktop HDs in your NAS! You will have timing errors between RAID and hard drive hardware. Total pain, and worrying for nothing about perfectly fine drives. If it’s too late and you already have done this (like me!) read on =) Trick for forcing a resync on hard drive marked as…

Read more Readynas NV+ v2 “C: unprotected”

IP Blocklists for Transmission

A list of IP blocklists that work with Transmission AKA transmissionbt: iblocklist: http://list.iblocklist.com/?list=bt_level1&fileformat=p2p&archiveformat=gz µpdater: http://downloads.sourceforge.net/scarangel/ipfilter.dat

Want to know what dd is doing?

From another terminal type kill -USR1 $pid, where pid=`pidof dd`. This causes dd to spit out data speeds and amounts transferred so far. you might wrap it up in something like:   pid=`pidof dd`  while [[ -d /proc/$pid ]];  do kill -USR1 $pid && sleep 5;  done Apparently pidof is deprecated or something?? If you…

Read more Want to know what dd is doing?

Bricked my Galaxy Note (Soft Brick Phew!)

Very intense day today as I luckily only soft bricked my GT-N7000. Got stuck in bootloop after an unsuccessful rom upgrade when returning to nandroid backup. And no i didn’t use stupid stock ICS kernel. Reflashed stock rom with Odin and it decided to fail :-O, redid it and felt very lucky when it worked!…

Read more Bricked my Galaxy Note (Soft Brick Phew!)

Web Spider

Grab a website with all links. First get GNU’s wget if you don’t have it installed already.I used this to grab a copy of my router’s GUI: wget –http-user=”” –http-password=”1234″ –recursive –convert-links -e robots=off 192.168.1.1 Obviously replace usr/pwd and URL where necessary. This grabs all pages and links that 192.168.1.1 leads to. For websites with…

Read more Web Spider