2010 September 30

How to read Ext3/Ext4 linux partition from windows 7

You can download Ext2Read from here

source

By WladyX on 30 September, 2010 | Cool Apps, Windows | A comment?

Automatically shutdown windows

shutdown -s -t 3600 –> windows shutsdown after 1 hour (3600 seconds)

source

By WladyX on | Windows | A comment?

Finding files larger than 200 MB on HP-UX

# find / -size +200000000c -exec ls -l {} \;

source

By WladyX on | HP-UX, Scripts | A comment?

Darik’s Boot And Nuke

Darik’s Boot and Nuke (“DBAN”) is a self-contained boot disk that securely wipes the hard disks of most computers. DBAN will automatically and completely delete the contents of any hard disk that it can detect, which makes it an appropriate utility for bulk or emergency data destruction.

homepage

By WladyX on | Security | A comment?

Using mysqldump to Back Up Your MySQL Database

mysqldump -u root -p --all-databases > backup092210.sql

source

By WladyX on | Mysql | A comment?