Showing posts with label Command Line. Show all posts
Showing posts with label Command Line. Show all posts

Convert .nrg to .iso in Ubuntu / Debian

Friday, November 8, 2013

How to convert file .nrg to .iso? In linux family, to convert file .nrg to .iso is not big problem. And does not require special tools to do it. Just use command line via terminal, we can do it.

This is command to convert file .nrg to .iso:
dd bs=1k if=fileimage.nrg of=fileimage.iso skip=300

The meaning of command above is:

  • dd is command to convert and copy a file
  • bs=1k is read and write 1 kilobytes at a time
  • if is read from file (this case is .nrg file)
  • of is write to file (this case is .iso file)
  • skip=300 is skip 300 kilobytes size blocks at start of input. To get .ISO we must reduce 300kb. So we skip 300.

How to Compress Files and Directories Using Command Line Zip

Sunday, September 15, 2013

Zip is a standard compression data what the most popular. With data compression, data size will be smaller so that the use of storage media or transfer data will be more efficient. 

ZIP files can decompress with a variety of free software or using command line. In this article, we will explain how to compress and decompress using command line.
 

Search This Blog

Follow My Twitter