• Home
  • Articles
  • Portfolio
  • Contact
Linux/Ubuntu Tutorials
  • Convert AVCHD
  • Convert UIF to ISO
  • Drupal Theming
  • Xbox 360 Media Sharing

UIF to ISO Converter - Windows and Linux

Posted by Wes on March 28, 2008 | 80 comments

Convert an UIF file to ISO image with a free program called UIF2ISO. It features GUI usage for the average windows user, just drag-and-drop your .UIF file, no installation required. Or command line access, for Windows or Linux users. Use this simple tool to convert .UIF files to the .ISO format in Windows or Linux.

Save yourself $30, follow these steps for Windows and Linux.

Windows: How to use UIF2ISO GUI

1. Download the UIF to ISO converter program UIF2ISO 0.1.7c and extract its content. You'll get a folder "uif2iso".

2. Drag-and-drop an UIF file onto the uif2iso.exe. Or just double click on UIF2ISO.exe and the tool will open a DOS-like window.
drag uif file to iso image

3. Then press Save, to convert the UIF file.
select uif file to iso image

4. The program will spit out some messages, and then output the .iso file into the current directory.
select uif file to iso image

Linux: How to Install UIF2ISO

1. First install these dependent packages.

sudo apt-get install zlib1g zlib1g-dev libssl-dev build-essential

2. Now we can download UIF2ISO with wget from a terminal, or from the author’s site here.
wget http://aluigi.altervista.org/mytoolz/uif2iso.zip

3. Once you have the file downloaded, unzip it and cd into the directory.
unzip uif2iso.zip
cd src

4. Finally compile the source, and create the executable.
make
sudo make install

5. Now you can convert the .uif file to an .iso with the following command:
uif2iso example.uif output.iso

Mounting an ISO

You don't necessarily need to burn a cd in order to access the files within the ISO. You can mount it with some simple commands.

Here is how to mount the ISO from command line.

sudo mkdir ISO_directory
sudo mount file.iso ISO_directory -t iso9660 -o loop

UIF2ISO was written by Luigi Auriemma

Comments

on April 2nd, 2008 Andy McDougall (not verified) said:

Many thanks, your utility has done the job.

Andy

  • reply
on December 29th, 2009 dido (not verified) said:

Very good post, thanks a lot.

  • reply
on April 29th, 2008 Cassidy James (not verified) said:

Apparently the source code is located inside a folder titled "src". So your step that says:

"unzip uif2iso.zip
cd uif2iso"

...should read:

"unzip uif2iso.zip
cd src"

Other than that, all was well. Thanks!

  • reply
on April 29th, 2008 Wes said:

Thank you Cassidy, for the correction.

  • reply
on May 3rd, 2008 Doug (not verified) said:

Thanks for the help bro, worked like a charm.
I'm not going to nitpick your steps, as you provided the pertinent info.

  • reply
on May 3rd, 2008 Wes said:

I’m glad I could help, and thank you Doug, for your comment.

I have developed a thick skin, working as a help desk technician over the years. So please hit me with your feedback, as it will help the next person who reads this article.

  • reply
on May 10th, 2008 Linus (not verified) said:

This is the best way to convert uif to iso on my Ubuntu Linux!! Thank you!

  • reply
on May 24th, 2008 bpd1069 (not verified) said:

Thanks a lot for this perfect utility.
I didn't see any type of license file included. You may want to apply a suitable license so that it can find its way into various distributions, and ultimately into other file system tools.

Much appreciated.

  • reply
on May 24th, 2008 Wes said:

After some digging, the license is inside the source file(src/uif2iso.c).

/*
Copyright 2007,2008 Luigi Auriemma

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

http://www.gnu.org/licenses/gpl.txt
*/

  • reply
on May 26th, 2008 Patricio (not verified) said:

What am I doing wrong?
Thanks!

patricio@patricio-desktop:~$ sudo apt-get install zlib1g zlib1g-dev libssl-dev build-essentials
Reading package lists... Done
Building dependency tree      
Reading state information... Done
zlib1g is already the newest version.
zlib1g-dev is already the newest version.
zlib1g-dev set to manually installed.
E: Couldn't find package build-essentials

patricio@patricio-desktop:~/src$ make
cc uif2iso.c -O2 -s -o uif2iso -lz -lssl -lcrypto
uif2iso.c:33:25: error: openssl/des.h: No such file or directory
uif2iso.c:126: error: expected declaration specifiers or ‘...’ before ‘DES_key_schedule’
uif2iso.c:131: error: expected ‘)’ before ‘*’ token
uif2iso.c: In function ‘main’:
uif2iso.c:159: error: ‘DES_key_schedule’ undeclared (first use in this function)
uif2iso.c:159: error: (Each undeclared identifier is reported only once
uif2iso.c:159: error: for each function it appears in.)
uif2iso.c:159: error: ‘ctx’ undeclared (first use in this function)
uif2iso.c:311: error: too many arguments to function ‘blhr_unzip’
uif2iso.c:323: error: too many arguments to function ‘blhr_unzip’
uif2iso.c:333: error: too many arguments to function ‘blhr_unzip’
uif2iso.c: At top level:
uif2iso.c:806: error: expected declaration specifiers or ‘...’ before ‘DES_key_schedule’
uif2iso.c: In function ‘blhr_unzip’:
uif2iso.c:813: error: ‘ctx’ undeclared (first use in this function)
uif2iso.c: At top level:
uif2iso.c:952: error: expected ‘)’ before ‘*’ token
make: *** [all] Error 1

  • reply
on August 10th, 2008 Anonymous (not verified) said:

This is the relevant error message:

uif2iso.c:33:25: error: openssl/des.h: No such file or directory

Now go to packages.ubuntu.com (or equivalent for your distro) and search for the package containing that file.

  • reply
on May 26th, 2008 Patricio (not verified) said:

ok, I think I needed for Ubuntu we need to use:
build-essential without the “s”
Thanks,
Patricio

  • reply
on May 27th, 2008 Patricio (not verified) said:

Wes, Conversion works great! For mounting I didn’t test gmountiso
but this works too:
sudo modprobe loop
sudo mkdir ISOPoint
sudo mount /media/file.iso /media/ISOPoint/ -t iso9660 -o loop
Patricio

  • reply
on May 27th, 2008 Wes said:

There was a typo(build-essential) should not have an “s”.

Thanks Patricio for pointing out the typo, and providing a pure command line procedure, for mounting ISOs.

  • reply
on May 29th, 2008 Alberto Drago (not verified) said:

Thanks! your utility has done the job.
:-)

  • reply
on May 30th, 2008 Coma (not verified) said:

Thanks mate. This rocks! :)

  • reply
on June 2nd, 2008 Andrés (not verified) said:

Many thanx ;D works perfectly fine for me

  • reply
on June 21st, 2008 Jonholio (not verified) said:

Thank you very much for this. You deserve a medal.

  • reply
on June 28th, 2008 Vivek (not verified) said:

Thanks a lot, worked like it should on DreamLinux

sudo apt-get install gmountiso does not work, it cant find a package by that name.
nvm, mounted using the other method.

  • reply
on July 7th, 2008 Anonymous (not verified) said:

Thanks for the program worked great on Kubuntu. As an aside you don't have to download the gmountiso program. iso files can be mounted already with the command:
mount -o loop example.iso /media/temp

  • reply
on July 25th, 2008 tally (not verified) said:

HI ,thanks for the nice tool....
it works like a charm...

  • reply
on July 31st, 2008 Anonymous (not verified) said:

Very helpful tutorial, you saved me a lot of time struggling with Wine and Magiciso. Thank you.

  • reply
on August 6th, 2008 Anonymous (not verified) said:

thank you, thank you, thank you!

  • reply
on August 7th, 2008 Mike (not verified) said:

Brilliant. Took about two minutes to do. Thank you so much!

  • reply
on August 8th, 2008 Gawain (not verified) said:

This is what I get

gawain@Cradle:~$ sudo apt-get install zliblg zliblg-dev libssl-dev build-essential
Reading package lists... Done
Building dependency tree      
Reading state information... Done
E: Couldn't find package zliblg

I'm very new to linux, but I guess that the package is removed?

  • reply
on April 19th, 2009 Anonymous (not verified) said:

It's zlib1g not zliblg. number 1 not letter L
i know this cause i was trying to do the same thing...

  • reply
on August 13th, 2008 Anonymous (not verified) said:

thank you!

  • reply
on August 16th, 2008 Anonymous (not verified) said:

ok

  • reply
on August 20th, 2008 Anonymous (not verified) said:

Hello,
thanks for the prog but when I ran it I get this

UIF2ISO 0.1.5a
by Luigi Auriemma
e-mail: aluigi@autistici.org
web: aluigi.org

- open 10000_Nature_Photos_&_Wallpapers.uif

file size 0000000015ac3e46
version 4
image type 8
padding 0
sectors 192781
sectors size 2048
blhr offset 0000000015ac175d
blhr size 9961
hash 9f087d3aaa999798d4da476d1c3a0aa6
others 00000040 00000000 00020201 00000000
- set DES encryption key: FAngS)snOt32
- DES password: 95 b5 a1 99 53 29 73 6e

Error: the compressed input is wrong or incomplete

Is there any solution to this?
Thanks!

  • reply
on August 25th, 2008 Dr Finlay (not verified) said:

Fantastic! Thank you so much for this! I hate MagicISO so much!

  • reply
on August 29th, 2008 maymore (not verified) said:

maymore@maymore-desktop:~/src$ uif2iso /home/maymore/123.uif /home/maymore/123.iso

UIF2ISO 0.1.6
by Luigi Auriemma
e-mail: aluigi@autistici.org
web: aluigi.org

- open /home/maymore/123.uif

file size 000000008efe50f7
version 4
image type 8
padding 0
sectors 1302321
sectors size 2048
blhr offset 000000008efda0e5
blhr size 45074
hash 003d551aab2b5a19c0d4fa9616206464
others 00000040 00000000 01 02 02 00 00000000

- enable magiciso_is_**** encryption
- ISO output image format
- create /home/maymore/123.iso
- start unpacking:
000%
Error: the compressed LZMA input is wrong or incomplete (0)

why????????

  • reply
on September 12th, 2008 Anonymous (not verified) said:

Thank you Wesley for the howto and thank you Luigi for the program.

Though I wish people would completely avoid proprietary formats.

Interestingly the author, Luigi, claims magiciso contains GPL violations.

Patricio i think you have a problem with libssl-dev; on mandriva i had to install libopenssl-dev

  • reply
on September 16th, 2008 Alex (not verified) said:

Whats going wrong here??

root@XELA:~# unzip uif2iso.zip
Archive: uif2iso.zip
creating: src/
inflating: src/3way.c
inflating: src/bf_tab.h
inflating: src/blowfish.c
inflating: src/blowfish.h
inflating: src/compa.bat
inflating: src/dunno.c
inflating: src/gost.c
inflating: src/idea.c
inflating: src/loki.h
inflating: src/loki.i
inflating: src/loki91.c
inflating: src/LzmaDec.c
inflating: src/LzmaDec.h
inflating: src/magiciso_is_shit.h
inflating: src/Makefile
inflating: src/rc5.c
inflating: src/seal.c
inflating: src/Types.h
inflating: src/uif2iso.c
inflating: uif2iso.exe
inflating: uif2iso.txt
root@XELA:~# cd src
root@XELA:~/src# make
cc uif2iso.c -O2 -s -o uif2iso -lz -lssl -lcrypto LzmaDec.c
uif2iso.c:32:18: error: zlib.h: No such file or directory
uif2iso.c:33:25: error: openssl/des.h: No such file or directory
uif2iso.c:135: error: expected declaration specifiers or ‘...’ before ‘z_stream’
uif2iso.c:135: error: expected declaration specifiers or ‘...’ before ‘DES_key_schedule’
uif2iso.c:139: error: expected ‘)’ before ‘*’ token
uif2iso.c:140: error: expected ‘)’ before ‘*’ token
uif2iso.c:146: error: expected ‘)’ before ‘*’ token
uif2iso.c: In function ‘main’:
uif2iso.c:182: error: ‘DES_key_schedule’ undeclared (first use in this function)
uif2iso.c:182: error: (Each undeclared identifier is reported only once
uif2iso.c:182: error: for each function it appears in.)
uif2iso.c:182: error: ‘des_ctx’ undeclared (first use in this function)
uif2iso.c:184: error: ‘z_stream’ undeclared (first use in this function)
uif2iso.c:184: error: ‘z’ undeclared (first use in this function)
uif2iso.c:309: error: ‘DES_cblock’ undeclared (first use in this function)
uif2iso.c:309: error: expected expression before ‘)’ token
uif2iso.c:322: error: expected expression before ‘)’ token
uif2iso.c:342: error: ‘alloc_func’ undeclared (first use in this function)
uif2iso.c:342: error: expected ‘;’ before numeric constant
uif2iso.c:343: error: ‘free_func’ undeclared (first use in this function)
uif2iso.c:343: error: expected ‘;’ before numeric constant
uif2iso.c:344: error: ‘voidpf’ undeclared (first use in this function)
uif2iso.c:344: error: expected ‘;’ before numeric constant
uif2iso.c:354: warning: passing argument 3 of ‘blhr_unzip’ makes integer from pointer without a cast
uif2iso.c:354: error: too many arguments to function ‘blhr_unzip’
uif2iso.c:366: warning: passing argument 3 of ‘blhr_unzip’ makes integer from pointer without a cast
uif2iso.c:366: error: too many arguments to function ‘blhr_unzip’
uif2iso.c:376: warning: passing argument 3 of ‘blhr_unzip’ makes integer from pointer without a cast
uif2iso.c:376: error: too many arguments to function ‘blhr_unzip’
uif2iso.c: At top level:
uif2iso.c:872: error: expected declaration specifiers or ‘...’ before ‘z_stream’
uif2iso.c:872: error: expected declaration specifiers or ‘...’ before ‘DES_key_schedule’
uif2iso.c: In function ‘blhr_unzip’:
uif2iso.c:881: error: ‘des_ctx’ undeclared (first use in this function)
uif2iso.c:885: error: ‘z’ undeclared (first use in this function)
uif2iso.c: At top level:
uif2iso.c:1001: error: expected ‘)’ before ‘*’ token
uif2iso.c:1038: error: expected ‘)’ before ‘*’ token
uif2iso.c:1122: error: expected ‘)’ before ‘*’ token
make: *** [all] Error 1
root@XELA:~/src# make install
install -m 755 -d /usr/local/bin
install -m 755 uif2iso /usr/local/bin/uif2iso
install: cannot stat `uif2iso': No such file or directory
make: *** [install] Error 1
root@XELA:~/src# uif2iso
bash: uif2iso: command not found

  • reply
on September 28th, 2008 bogdan (not verified) said:

install zlib and openssl ( devel packages) and try compiling again.
You cannot do make install if make failed.
Make sure that you have NO errors and the uif2iso program is created in the src directory.

Bogdan

  • reply
on September 22nd, 2008 Reaction (not verified) said:

Thanks, works like a charm!!!

  • reply
on September 23rd, 2008 xCodeBluex (not verified) said:

Error: wrong bbis signature <00000000>

Press RETURN to quit

I used the .UIF file and try to convert..

  • reply
on October 10th, 2009 Anonymous (not verified) said:

i got this too... help??

  • reply
on September 24th, 2008 Anonymous (not verified) said:

Hi,
if you dont feel like compiling, when unzipping the uif2iso.zip file, an uif2iso.exe is generated. If you have wine installed, copy the uif2iso.exe to the same folder as the uif file and type

wine uif2iso.exe yourfile.uif yournewfile

and a yournewfile.iso will hopefully be generated!

  • reply
on September 26th, 2008 Anonymous (not verified) said:

@alex

Make sure you install openssl-dev package.

@Blogger

Thank you!!! works perfectly. Ubuntu 8.04 - Hardy Heron

  • reply
on September 27th, 2008 Krpalospo (not verified) said:

Thanks a lot ....

  • reply
on September 28th, 2008 bogdan (not verified) said:

install zlib and openssl ( devel packages) and try compiling again.
You cannot do make install if make failed.
Make suere that you have NO errors and the uif2iso program is created in the src directory

Bogdan

  • reply
on December 1st, 2008 WunHeart (not verified) said:

Worked like a charm. Thanks for the simple HOW TO

  • reply
on December 5th, 2008 Kiran Chand K (not verified) said:

superb!!!!its workn like a chrm...u re amzn man...i hav tried to unzip ths sht uif in windows and nothng wrkd there..ths thng rockzz...expctng more frm u...

  • reply
on January 6th, 2009 Anonymous (not verified) said:

Thnx man,
works like a charm :D

  • reply
on January 17th, 2009 skt (not verified) said:

worked perfectly... thanks for makin it so ez

  • reply
on January 26th, 2009 Anonymous (not verified) said:

Hi,

I am stuck on this command:

make
sudo make install

I do have to fill in something, the source, the uif file name??? I cant find the solution :-(
I hope somebody likes newbies and fill in the gaps :-)
alex

  • reply
on January 26th, 2009 dradmin said:

Anonymous

What error message does it give you when you execute the

make
sudo make install

Also what Linux flavour do you have installed, Ubuntu 8.10, Slackware, Redhat?

Wes

  • reply
on March 12th, 2009 aloses (not verified) said:

Thank you!!!!!!!!!!!!!!!
MANY Thanx!
You have freed us from the UIF scam!

I AM aloses and LINUX rules!

P.S. minor error did not prevent install.

uif2iso.c: In function ‘nrg_truncate’:
uif2iso.c:933: warning: ignoring return value of ‘ftruncate’, declared with attribute warn_unused_result

  • reply
on April 17th, 2009 Anonymous (not verified) said:

Lol nice.
In the command prompt, Luigi (creator of the converter) says "enable magiciso_is_shit encryption"
loved that one :)

  • reply
on April 26th, 2009 Anonymous (not verified) said:

thank you. i'm new to linux and following your instructions was a breeze.

  • reply
on May 7th, 2009 Anonymous (not verified) said:

Hi! Thank you for this tip. I got through all of it without a hitch on Ubuntu 8.10, until I mounted the ISO and found that only the first third of the files were there (out of a 2.5 GB uif, I can only see the first 800 MB). Any suggestions? Thanks!

  • reply
on May 10th, 2009 Anonymous (not verified) said:

I'm wondering how to disable encryption, as requested. Any ideas on what might be the problem?

***********
UIF2ISO 0.1.7b
by Luigi Auriemma
e-mail: aluigi@autistici.org
web: aluigi.org

- open rld-aoe-cd1.uif

file size 000000002434fcae
version 1
image type 8
padding 0
sectors 307364
sectors size 2048
blhr offset 000000002434c179
blhr size 15157
hash 4b787d5f999f18bae66e3184bbdd3181
others 00000040 00000000 00 00 00 00 00000000

- disable any encryption

Error: the compressed LZMA input is wrong or incomplete (0)

  • reply
on May 28th, 2009 Czapajewz (not verified) said:

To have this program in your database, I suggest to use checkinstall:
$ unzip uif2iso.zip
$ cd src
$ make
$ sudo checkinstall -D --install=no
then you can use whatever program you like to install it
example:
$ sudo dpkg -i
To uninstall it you can use a Synaptic package manager.

  • reply
on May 28th, 2009 Anonymous (not verified) said:

thx dude..

  • reply
on June 6th, 2009 Anonymous (not verified) said:

Excellent!

- enable magiciso_is_shit encryption

  • reply
on July 14th, 2009 Anonymous (not verified) said:

Worked great on openSUSE 11. Thanks a ton.

  • reply
on July 15th, 2009 h3nk (not verified) said:

Thanx for the howto!

gr33tz

h3nk

  • reply
on July 15th, 2009 Randee (not verified) said:

Great information, concise simple and it is converting a file 2 minutes after reading your article.

  • reply
on July 19th, 2009 Anonymous (not verified) said:

Use:

unzip uif2iso.zip -d uif2iso

if you do not want to clutter your directories because the stupid zip does not embed any subdirectory.

And the two lines:

sudo mkdir ISO_directory
sudo mount /media/file.iso /media/ISOPoint/ -t iso9660 -o loop

are supposed to mention the same directory and it does not have to be owned by root or be in /media

  • reply
on July 20th, 2009 David (not verified) said:

Thank you a lot, another boot to Windows has been skipped :D

David

  • reply
on July 21st, 2009 Anonymous (not verified) said:

perfect! huge time savor! thanks!

works under CentOS 5.3

yum install uif2iso

uif2iso example.uif output.iso

  • reply
on August 1st, 2009 Anonymous (not verified) said:

Thanks bro! this worked perfectly!

  • reply
on August 14th, 2009 brummbaer (not verified) said:

excellent program, works flawlessly. thank you for putting this out there.

  • reply
on August 21st, 2009 Robert (not verified) said:

When mounting I get this error:

developer@ubuntu:~$ sudo modprobe loop
[sudo] password for developer:
WARNING: All config files need .conf: /etc/modprobe.d/oss-compat, it will be ignored in a future release.
FATAL: Module loop not found.

I am using Ubuntu 9.04.

Robert

  • reply
on August 21st, 2009 dradmin said:

Try skipping that step, it is not necessary in 9.04

  • reply
on August 27th, 2009 Lance (not verified) said:

I just wanted to say thanks for making available such a useful program. I'd come across some UIF files and had no way to burn them on my Ubuntu 9.04 box until I found your website. It worked flawlessly!

  • reply
on September 9th, 2009 Adam Risi (not verified) said:

Great job! I am all for getting this in the debian and ubuntu repositories.

  • reply
on September 12th, 2009 TonhaoSemAcento (not verified) said:

Works great in Ubuntu 9.94

Thanks for the tip

  • reply
on September 17th, 2009 dradmin said:

Sorry, I'm running Ubuntu so I'm not sure how to fix this. However lots of people read this post, so someone may respond with a helpful answer.

  • reply
on September 20th, 2009 Ishan Karve (not verified) said:

Great piece of code and very usefull indeed. Thanks a ton .. as a user of the open source community

  • reply
  • 1
  • 2
  • next ›
  • last »

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
copy the characters (respecting upper/lower case) from the image.

Search Linux Articles