3

I'm a psychology student at the VU Amsterdam. For my statistic courses this software called IBM SPSS statistics is required andabsolutly neccesary. I bought it of the official website and downloaded the .zip file. I've tried to open it with archivemanager and it was extracting something but in the end it always said:

Invalid url: '/home/mumen420/.cache/.fr-Q2kVc7/IBM' given, exiting

I've tried to use the unzip command and that always responds with

mumen420@Laptop-chan:~$ unzip IBM SPSS Statistics 24 Linux.zip
unzip:  cannot find or open IBM, IBM.zip or IBM.ZIP
dessert
  • 39,982

2 Answers2

4

You should use \ for the escape character so that it knows there is a space where ever there is a space in the filename:

unzip IBM\ SPSS\ Statistics\ 24\ Linux.zip

Hope this helps!

Terrance
  • 41,612
  • 7
  • 124
  • 183
3

Besides from escaping, you can also quote the file name:

unzip "IBM SPSS Statistics 24 Linux.zip"

or

unzip 'IBM SPSS Statistics 24 Linux.zip'
dessert
  • 39,982