Linux(Ubuntu) + RAVE iso - YMMV...

This site contains affiliate links for which LandyZone may be compensated if you make a purchase.

TaDa

Active Member
Posts
432
Location
Barnstaple or thereabouts
I'm presuming that you have Linux, some linux skills and have the "Wine" software installed...

I found a rave ISO and tried it on my Linux (Ubuntu 12.04) pc...

First I mounted it with the "Archive Mounter" this gave me a new "device" but when I right-clicked on RAVE.exe and chose to open it with Wine I got "permission denied".

I played around for a while but discovered that all the PDFs were password locked.

So I went back to the iso file and extracted it to a directory using "Archive Manager".

This seemed to extract all the files twice (!!) - the second one would have a ';1' suffix - worryingly the correct named files were zero bytes.

I decided that the ';1' files were the correct ones so thought it best to rename them 'over' their zero byte sized counterparts.

So I ran this command in the extracted parent dir:

Code:
find . -name '*;1*' | while read i; do j=$(echo $i | sed -e 's/;1//'); echo $i; mv "$i" "$j"; done

I tried Wine on the RAVE.exe again - but got permission denied again - I then realised that the executables were mounted without execute permission so I ran this command:

Code:
find . -name '*.exe*' | while read i; do echo $i; chmod 755 "$i"; done

I then tried Wine/RAVE.exe againand it worked a treat - Hoorah!

I surmise that when the ISO is mounted (yes I realise this sounds dodgy) it mounts it for Windows.
Since Windows identifies executables by their .exe extension they do not need any exe permissions. Unless you can think of a way of mounting the iso as a writeable disc and change the permissions on there, your're going to have to extract it like I did.

I still don't fully understand the ";1" suffix - perhaps it is something weird with the underlying file system of the iso (I believe that NTFS had some weird hidden/parallel file functionality) - its difficult to google for ';1' :(

So, there you have it, extract the iso, rename the ';1' files, chmod the exe files and away you go!

I hope that helps
 
I'm pretty sure that's all you needed to say :rolleyes:



The OP was like an answer to a question that no one had asked. Then again who would, and why does the OP think we would have Linux and linux skills :confused::confused::eek::eek::eek:

And then again the were no pictures of this kitten or the rave or the wine
 
I was struggling to get RAVE CDs/ISOs working on my linux pc so I surfed the net but all I found was other people asking the same question.

I worked a little harder and stumbled across a solution which I spelled out in my post - which was meant to be a 'howto'

So, I get it - I posted this in the wrong place

This is Land Rover related - since RAVE covers all landrovers - which forum should it go in?

Obviously "General Land Rover Chat" is not the right place
 
Nah - you posted in the right place, just left some of us floundering in your wake. Personally, I'm just about up to speed with Windows and Android, but if I ever upgrade to Linux I'm sure I will be grateful:tea:
 
I was struggling to get RAVE CDs/ISOs working on my linux pc so I surfed the net but all I found was other people asking the same question.

I worked a little harder and stumbled across a solution which I spelled out in my post - which was meant to be a 'howto'

So, I get it - I posted this in the wrong place

This is Land Rover related - since RAVE covers all landrovers - which forum should it go in?

Obviously "General Land Rover Chat" is not the right place

I ain't got a clue what yer on about but I knows what RAVE is and that's General Landy Chat enough fer me :)
 
I struggle to get RAVE working properly on my windows machine (apart from it being a random collection of PDFs)

I do use Ubuntu, but havent tried it on there.
Would be good to get it useable on an Android Tablet tho...for use on the drive etc
 
I'm presuming that you have Linux, some linux skills and have the "Wine" software installed...

I found a rave ISO and tried it on my Linux (Ubuntu 12.04) pc...

First I mounted it with the "Archive Mounter" this gave me a new "device" but when I right-clicked on RAVE.exe and chose to open it with Wine I got "permission denied".

I played around for a while but discovered that all the PDFs were password locked.

So I went back to the iso file and extracted it to a directory using "Archive Manager".

This seemed to extract all the files twice (!!) - the second one would have a ';1' suffix - worryingly the correct named files were zero bytes.

I decided that the ';1' files were the correct ones so thought it best to rename them 'over' their zero byte sized counterparts.

So I ran this command in the extracted parent dir:

Code:
find . -name '*;1*' | while read i; do j=$(echo $i | sed -e 's/;1//'); echo $i; mv "$i" "$j"; done

I tried Wine on the RAVE.exe again - but got permission denied again - I then realised that the executables were mounted without execute permission so I ran this command:

Code:
find . -name '*.exe*' | while read i; do echo $i; chmod 755 "$i"; done

I then tried Wine/RAVE.exe againand it worked a treat - Hoorah!

I surmise that when the ISO is mounted (yes I realise this sounds dodgy) it mounts it for Windows.
Since Windows identifies executables by their .exe extension they do not need any exe permissions. Unless you can think of a way of mounting the iso as a writeable disc and change the permissions on there, your're going to have to extract it like I did.

I still don't fully understand the ";1" suffix - perhaps it is something weird with the underlying file system of the iso (I believe that NTFS had some weird hidden/parallel file functionality) - its difficult to google for ';1' :(

So, there you have it, extract the iso, rename the ';1' files, chmod the exe files and away you go!

I hope that helps

I find it easier just to run a windows VM under linux than use wine, but when I did play around with it I found copying genuine DLL's from windows into wine helps things run a bit more smoothly.. Not sure on the legality of that though :)

Not sure why you are seeing duplicate files have you used ls or file to check if they are symlinks, or maybe fsck the volume? If the file system is EXT4 I think there are also some bugs in certain versions, I have seen some weird stuff..
 
I struggle to get RAVE working properly on my windows machine (apart from it being a random collection of PDFs)

I do use Ubuntu, but havent tried it on there.
Would be good to get it useable on an Android Tablet tho...for use on the drive etc

Now if someone could do an idiots guide to that it would be really good :)
 
Does anyone know the rave converter file called freerave_1.36.rar?

Allegedly it has the power to convert the locked pdf files to unlocked pdf files.

If this really exists and works it would surely allow any Android device to read the files.

I fear it was vapourware.
 
Does anyone know the rave converter file called freerave_1.36.rar?

Allegedly it has the power to convert the locked pdf files to unlocked pdf files.

If this really exists and works it would surely allow any Android device to read the files.

I fear it was vapourware.

If you just want the PDF's you can just download them direct from here land rover service factory manual RAVE download land rover resource, service manual, workshop factory manual, download, rave, vehicles including discovery, series, defender, range rover, freelander, LR3, Handbooks, Catalog, Catalogue, Land Rover Inte they are just standard PDF's should work on anything.
 
Back
Top