Difference between revisions of "Membuka uif file"

From OnnoWiki
Jump to navigation Jump to search
(New page: Sumber: http://ubuntuforums.org/showthread.php?t=1082788 I know it's not really linux native, but I just used it like this abbout five minutes ago: sirius@dogstar:~$ wine uif2iso.exe ...)
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Sumber: http://ubuntuforums.org/showthread.php?t=1082788
 
Sumber: http://ubuntuforums.org/showthread.php?t=1082788
  
 +
Kita bisa cari uif2iso.exe dan menggunakan wine, contoh
  
  I know it's not really linux native, but I just used it like this abbout five minutes ago:
+
  $ wine uif2iso.exe <filename>.uif <filename>
  
sirius@dogstar:~$ wine uif2iso.exe <filename>.uif <filename>
 
  
and it did everything right there in the terminal, no problem, no fake wine windows window. Of course that means you have to have wine, but hey... I don't think anybody else has broken the encryption on uif and made a tool for it.  
+
==Alternatif Lain==
 +
 
 +
Instalasi
 +
 
 +
sudo apt-get install uif2iso
 +
 
 +
Konversi
 +
 
 +
uif2iso [input.uif] [output.iso]
 +
 
 +
 
 +
 
 +
==Mount iso==
 +
 
 +
Buat folder
 +
 
 +
$ sudo mkdir /mnt/virtualcd
 +
 
 +
Mount file iso ke folder Virtual CD
 +
 
 +
$ sudo mount -t iso9660 -o loop /path/ke/file.iso /mnt/virtualcd
  
  
Line 13: Line 33:
  
 
* http://ubuntuforums.org/showthread.php?t=1082788
 
* http://ubuntuforums.org/showthread.php?t=1082788
 +
* http://www.junauza.com/2010/02/how-to-openextract-uif-files-in-ubuntu.html

Latest revision as of 20:22, 6 August 2015

Sumber: http://ubuntuforums.org/showthread.php?t=1082788

Kita bisa cari uif2iso.exe dan menggunakan wine, contoh

$ wine uif2iso.exe <filename>.uif <filename>


Alternatif Lain

Instalasi

sudo apt-get install uif2iso

Konversi

uif2iso [input.uif] [output.iso]


Mount iso

Buat folder

$ sudo mkdir /mnt/virtualcd

Mount file iso ke folder Virtual CD

$ sudo mount -t iso9660 -o loop /path/ke/file.iso /mnt/virtualcd


Referensi