Skip to content
Archive of posts filed under the Linux category.

Chuyển đổi tập tin ảnh của chương trình Nero thành tập tin .ISO!

Chuyển đổi tập tin ảnh của chương trình Nero thành tập tin .ISO: Với ‘Michael_Jackson.nrg’ đường dẫn tới tập tin ảnh của Nero cần chuyển. dd bs=1k if=Michael_Jackson.nrg of=Michael_Jackson.iso skip=300

What is my public IP-address?

What is my public IP-address? Short command, easy to remember dig +short @208.67.222.222 myip.opendns.com 

Sử dụng curl để cập nhật status twitter trong linux

Update twitter via curl curl -u user -d status=”I am from MrHien.Info” http://twitter.com/statuses/update.xml

Recursive Chmod Tricks

Chỉ chmod  thư mục : find . -type d -exec chmod 755 {} \; Chỉ chmod tập tin : find . -type f -exec chmod 644 {} \; Chỉ chmod tập tin có phần mở rộng là .php: find . -type f -name ‘*.php’ -exec chmod 600 {} \;