cancel
Showing results for 
Search instead for 
Did you mean: 

SAPCAR 7.21 for OS X 11

manish_umarwadia2
Participant

Hello,

Hello, I am trying to follow Denys' blog, however with Big Sur (OS X 11.1), you do not get the option of even running an exe file from an unidentified developer. I am stuck at not getting "allow anyway" ./SAPCAR_1324-70002712.EXE [img id="

https://blogs.sap.com/2020/03/18/sap-hana-sapcar-and-macos/I was wondering if anyone has managed to install SAPCAR with Big Sur (OS X 11.0),

dvankempen
Product and Topic Expert
Product and Topic Expert
0 Kudos

Got the answer to your question? To improve the knowledge base and make the right answers easier to find, please mark the best answer and close the question. Thanks!

Don’t know how? See https://answers.sap.com/questions/13162472/how-to-mark-an-answer-and-how-to-close-a-question.html

For the readers, before you leave, don't forget to up/down vote the answers. You can vote on the question too.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

dvankempen
Product and Topic Expert
Product and Topic Expert

Hi Manish,

You only need to remove the “Windows” extension and make the file executable.

mv SAPCAR_1324-70002712.EXE sapcar 
chmod u+x sapcar  
./sapcar   

# to put the utility in the path use copy or move (cp / mv)
cp sapcar /usr/local/bin/

Make sure to download the version for macOS 64-bit.

manish_umarwadia2
Participant
0 Kudos

Hello Denys,

Thanks for your reply. However I am still stuck at the same point. When I issue the ./sapcar command below, all it does it give the usage of sapcar and it's patch information etc. I still went ahead and issued the other commands after === below and it still does not recognize SAPCAR command.I did download the Mac osx 64-bit. As I said I am on OS X 11.1 beta.

regards,

Manish

---------

hana % mv SAPCAR.EXE sapcar

hana % chmod u+x sapcar

hana % ./sapcar

usage:

===

sudo mv sapcar /usr/local/SAPCAR

hana % sudo chmod 755 /usr/local/SAPCAR

sudo chgrp admin /usr/local/SAPCAR

sudo xattr -d com.apple.quarantine /usr/local/SAPCAR

xattr: /usr/local/SAPCAR: No such xattr: com.apple.quarantine

hana % SAPCAR -xvf IMC_STUDIO2_253_0-80000322.SAR

zsh: command not found: SAPCAR

dvankempen
Product and Topic Expert
Product and Topic Expert

all it does it give the usage of sapcar and it's patch information etc.

>> this indicates that you have successfully executed the executable.

zsh: command not found: SAPCAR

>> this indicates that the command is not in the PATH.

sudo mv sapcar /usr/local/SAPCAR

/usr/local is not a default path, so you either have to add this directory to the path (not recommended) or otherwise run the command with full path.

/usr/local/SAPCAR

Alternatively, why not copy the executable to a location that is in the default path?

sudo mv sapcar /usr/local/bin/SAPCAR
manish_umarwadia2
Participant

Hello Denys,

Thanks again for the detailed answer. Also sorry about basic questions bu there is no /usr/local/bin on my Mac, only a /usr/local or /usr/bin.

Manish

dvankempen
Product and Topic Expert
Product and Topic Expert

No problem. With command

echo $PATH

you can see what's in the path. Any directory will do but /usr/bin sounds like a good candidate (or you can create /usr/local/bin and add it to the PATH but this requires a bit more work)

For some backgrounds about the file system (macOS Darwin = UNIX), see

manish_umarwadia2
Participant
0 Kudos

Hi Denys,

Was able to run the command with the full path. I will look at your links also for my education.

Best Regards,

Manish

Answers (0)