<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Linux Apps on Ivon's Blog</title><link>https://ivonblog.com/en-us/categories/linux-apps/</link><description>Recent content in Linux Apps on Ivon's Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>infoivonblog.nkfjt@aleeas.com (Ivon Huang)</managingEditor><webMaster>infoivonblog.nkfjt@aleeas.com (Ivon Huang)</webMaster><copyright>You are welcome to share articles of Ivon's Blog (ivonblog.com). Please include the original URL when citing articles, and abide by CC BY-NC-ND 4.0 license. For commercial use, please write an e-mail to me.</copyright><lastBuildDate>Sat, 13 Apr 2024 16:00:00 +0800</lastBuildDate><atom:link href="https://ivonblog.com/en-us/categories/linux-apps/index.xml" rel="self" type="application/rss+xml"/><item><title>Running IBM SPSS Statistics 29 using Wine on Linux</title><link>https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/</link><pubDate>Sat, 13 Apr 2024 16:00:00 +0800</pubDate><author>infoivonblog.nkfjt@aleeas.com (Ivon Huang)</author><guid>https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/</guid><description>&lt;p&gt;&lt;a href="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/" &gt;中文版&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When doing statistical analysis research in applied linguistics, it is inevitable to use SPSS to calculate the results.&lt;/p&gt;
&lt;p&gt;SPSS software is a proprietary software developed by IBM, and now it only supports Window and macOS.
&lt;figure&gt;
 &lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/images/spss.webp"
 onerror="this.onerror=null;this.src='https://ivonblog.com/images/cannotloadimage.avif'"
 width="196"
 height="196"&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;p&gt;Actually, SPSS should natively support Redhat Linux distributions, but according to the &lt;a href="https://www.ibm.com/support/pages/supported-platforms-ibm-spss-statistics-280-and-" target="_blank" rel="noreferrer"&gt;IBM&lt;/a&gt; announcement, the Linux version of SPSS is only supported up to version 27.&lt;/p&gt;
&lt;p&gt;PS IMAGO PRO is a statistical analysis software released by Predictive Solutions, containing IBM SPSS Statistics, PS IMAGO Desinger, PS IMAGO Process.&lt;/p&gt;
&lt;p&gt;The SPSS that our school purchased from the representative is version 29, which is included in the &amp;ldquo;PS IMAGO PRO&amp;rdquo; bundle, and we renew the contract every year to purchase the latest version of SPSS, which is awesome! We don&amp;rsquo;t keep any old version of the software for others to download!&lt;/p&gt;
&lt;p&gt;Then we can only use Bottles (Wine) to run SPSS! The &lt;a href="https://appdb.winehq.org/objectManager.php?sClass=application&amp;amp;iId=1028" target="_blank" rel="noreferrer"&gt;WineDB&lt;/a&gt; data shows that the last versions of SPSS have been running quite well.&lt;/p&gt;
&lt;p&gt;My Operating System: Ubuntu 22.04&lt;/p&gt;

&lt;h2 class="relative group"&gt;1. Download IBM SPSS Statistics
 &lt;div id="1-download-ibm-spss-statistics" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#1-download-ibm-spss-statistics" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;I&amp;rsquo;m not going to discuss pirated installations here. My SPSS is included in the PS IMAGO PRO suite of software, which was obtained from the school&amp;rsquo;s designated internal server, and includes an activation serial number.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;After downloading PS IMAGO PRO, I get an ISO file. Mount it as a loop device.&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo mkdir /mnt/isoimage
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo mount -o loop /home/user/Downloads/PS_IMAGO_PRO_9.iso /mnt/isoimage&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ol start="2"&gt;
&lt;li&gt;Copy all the files to Downloads&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo cp -r /mnt/isoimage/* /home/user/Downloads&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ol start="3"&gt;
&lt;li&gt;Umount the ISO&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo umount /mnt/isoimage&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 class="relative group"&gt;2. Install IPM SPSS Statistics in Bottles
 &lt;div id="2-install-ipm-spss-statistics-in-bottles" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#2-install-ipm-spss-statistics-in-bottles" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Install &lt;a href="https://usebottles.com/" target="_blank" rel="noreferrer"&gt;Bottles for Linux&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add a new bottle using the &amp;ldquo;Gaming&amp;rdquo; template&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install dependencies: &lt;code&gt;cjkfonts&lt;/code&gt; and &lt;code&gt;vcredist2012&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Click to execute the installer
&lt;figure&gt;
 &lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/images/Screenshot_20240307_165450.webp"
 onerror="this.onerror=null;this.src='https://ivonblog.com/images/cannotloadimage.avif'"
 width="740"
 height="619"&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Click &lt;code&gt;PdDesktop&lt;/code&gt; in the program list to enter the main screen.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Open &amp;ldquo;PS Activator&amp;rdquo; to open and enter serial code to activate SPSS.
&lt;figure&gt;
 &lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/images/Screenshot_20240307_170326.webp"
 onerror="this.onerror=null;this.src='https://ivonblog.com/images/cannotloadimage.avif'"
 width="750"
 height="550"&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&amp;rsquo;t know why the Chinese text can&amp;rsquo;t be displayed in SPSS, so I have to go to the options to change the interface language to English.
&lt;figure&gt;
 &lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/images/Screenshot_20240307_173138.webp"
 onerror="this.onerror=null;this.src='https://ivonblog.com/images/cannotloadimage.avif'"
 width="1172"
 height="831"&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Simply run a paired T-test to analyze the mean value and confirm that I can generate the graph, and I have no problem loading and saving the .sav file.
&lt;figure&gt;
 &lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/images/Screenshot_20240307_173315.webp"
 onerror="this.onerror=null;this.src='https://ivonblog.com/images/cannotloadimage.avif'"
 width="1425"
 height="873"&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2 class="relative group"&gt;3. See also : Linux Open Source Alternatives to SPSS
 &lt;div id="3-see-also--linux-open-source-alternatives-to-spss" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#3-see-also--linux-open-source-alternatives-to-spss" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;These two programs are similar in functionality to SPSS and support Linux natively.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.gnu.org/software/pspp/" target="_blank" rel="noreferrer"&gt;GNU PPSP&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://jasp-stats.org/" target="_blank" rel="noreferrer"&gt;JASP&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://ivonblog.com/en-us/posts/linux-wine-ibm-spss/featured.webp"/></item></channel></rss>