2014-07-27 74 views
0

我試圖提取Microsoft虛擬盒裝圖片爲Windows8.1/IE11如何在ubuntu中提取SFX文件?

主機系統是Ubuntu的...

Distributor ID: Ubuntu 
Description: Ubuntu 14.04.1 LTS 
Release: 14.04 
Codename: trusty 

我下載的4個文件,第一部分是一個自解壓文件,部分2 ,3和4是RAR文件。

上的所有文件運行chmod 777之後,我嘗試使用./filename.sfx提取存檔,但這個失敗,錯誤:

[email protected]:~/Desktop/vBoxImages/Win$ ./IE11.Win8.1.For.LinuxVirtualBox.part1.sfx 
./IE11.Win8.1.For.LinuxVirtualBox.part1.sfx: line 2: syntax error near unexpected token `)' 

我試着使用的UnZipSFX但我得到...

[email protected]:~/Desktop/vBoxImages/Win$ unzipsfx IE11.Win8.1.For.LinuxVirtualBox.part1.sfx 
UnZipSFX 6.00 of 20 April 2009, by Info-ZIP (http://www.info-zip.org). 
unzipsfx: cannot find myself! [unzipsfx] 
[email protected]:~/Desktop/vBoxImages/Win$ 

的unrar命令說,SFX不是RAR壓縮包

,如果我嘗試和的unrar第2部分,它說...

WARNING: You need to start extraction from a previous volume to unpack IE11 - Win8.1.ova

的4個文件是位於我在

工作目錄中的文件只有我怎樣才能提取這些在Ubuntu?請幫助

+0

這是一個通用計算問題。不是一個編碼問題。 – JakeGould

+1

這個問題似乎是脫離主題,更適合http://askubuntu.com/ – Noel

+0

我發現問題 - Win 8的下載是越野車 - 我用IE 11下載了Win 7文件,並做了「./filename」 - 雖然第一次沒有工作 - 我在其他地方讀過它只能在32位的linux上運行,所以我安裝了一個32位的linux虛擬機,並運行了這個命令,它完成了這項工作 – danday74

回答

1
after running chmod 777 on all files, I tried to extract the archive using ./filename.sfx but this failed with the error ... 

[email protected]:~/Desktop/vBoxImages/Win$ ./IE11.Win8.1.For.LinuxVirtualBox.part1.sfx 

./IE11.Win8.1.For.LinuxVirtualBox.part1.sfx: line 2: syntax error near unexpected token `)'

在文件開始缺乏其它指令,shell將嘗試就好像它是shell命令的列表,以執行其內容。

我真誠地懷疑,如果存檔是在Windows(或其他操作系統)上創建的,您將能夠在Linux下自行提取它。

我懷疑所有的都是同一個RAR文件的一部分,其中.SFX文件是第一部分,如果執行將獲取其餘部分。分割是爲了保持大小可以接受(並且在電子郵件服務器有嚴格的限制時是必須的)。

part1 is an SFX file, parts 2,3 and 4 are RAR files.

它們都是同一個大的RAR文件的所有部分。您必須從第一個(.sfx)文件開始,其餘部分應該自動繼續(它們必須位於同一個目錄中)。

unrar命令是否立即返回,還是需要幾秒鐘?在後一種情況下,該文件可能受密碼保護。

最後,這個文件有可能是用比您的unrar能夠解壓縮的更新版本的RAR創建的。

推論:從來沒有用戶RAR壓縮Linux上的檔案。並且,順便說一下,.OVA文件是已經壓縮的

+0

*我真誠地懷疑,如果存檔是在Windows(或其他操作系統)上創建的,那麼您將能夠在Linux下自行提取它。*實際上不是問題。您可以在另一個平臺platformY上創建針對platformX的SFX存檔。請參閱https://netbeansscribbles.wordpress.com/2015/01/30/creating-a-self-extracting-7zip-archive-multi-platform/。 – peterh