Support Apnea Board & OSCAR  

Difference between revisions of "OSCAR Installation: Linux"

From Apnea Board Wiki
Jump to: navigation, search

m (Linux version)
(Linux version: Added a papragraph about RASPberryPi OS installation.)
 
(11 intermediate revisions by 3 users not shown)
Line 8: Line 8:
 
===Linux Installation Notes===
 
===Linux Installation Notes===
  
For version 1.1.0 the locations of the files used by OSCAR have changed to match the recommendations of the freedesktop.org. To accommodate this, it is recommended that any older versions of OSCAR, including -beta and -test versions, should be removed – more exactly, purged - before installation of version 1.1.0.<br />
+
For version 1.1.0 and later the locations of the files used by OSCAR have changed to match the recommendations of the freedesktop.org. To accommodate this, it is recommended that any older versions of OSCAR, including -beta and -test versions, should be removed – more exactly, purged - before installation of version 1.1.0.
  
Note that removing the OSCAR package ill not affect the OSCAR data  have imported.<br />
+
Note that removing the OSCAR package will not affect the OSCAR_Data that has already been imported.
  
 +
To install OSCAR on Ubuntu or Debian, download the appropriate file [https://www.sleepfiles.com/OSCAR/ from the official OSCAR web site] for your platform.
  
For '''Debian-based systems''', this is done in two steps:<br />
+
==== '''Debian-based systems''' ====
 +
First, '''purging''' is done in two steps:
  
<prompt>$ dpkg -l | grep -i oscar<br />
+
:::<prompt>$ dpkg -l | grep -i oscar
  
will display long lines starting with two letters, followed by the package-name and then the version and more stuff. <br />
+
will display long lines starting with two letters, followed by the package-name and then the version and more stuff.
  
The next step is to purge each package listed above, using:<br />
+
The next step is to purge each package listed above, using:
  
<prompt>$ sudo dpkg --purge <package-name><br />
+
:::<prompt>$ sudo apt purge <package-name>
  
 +
If your long line started with three letters, especially if the third was an R, you will need to use the following:
  
For '''RPM-based systems''' (from v1.1.1), the procedure has two steps:<br />
+
:::<prompt>$ sudo dpkg --force-remove-reinstreq remove <package name>
  
<prompt>$ dnf list installed “oscar*”<br />
+
Then, '''installation''':
  
Don’t forget the quotes around oscar*. The first column has the package-name followed by the architecture. <br />
+
:::<prompt>:$ sudo apt install ./<deb file>
  
Then remove the package with:<br />
+
assuming you are in the folder where you downloaded it.
 +
 
 +
On Ubuntu 18.04 systems, this may result in a greyed-out square for the OSCAR desktop icon, and an incomplete installation.
 +
 
 +
The fix is to 'sudo apt remove oscar' and then repeat the installation step above.
  
<prompt>$ sudo dnf remove <package-name><br />
+
==== '''RaspberryPi OS''' ====
  
 +
This package has been tested on a Raspberry Pi 4B with 4 GB memory and a USB attached SSD, and it should work on a 3B or 3B+ with a USB attached hard drive. A separate SD card reader is also required.
  
Once the old versions are removed, installation is straight-forward:
+
The installation uses a terminal window, and is the same as the Debian systems above:
  
For '''Debian-based systems''':<br />
+
:::<prompt>$ sudo apt install ./<deb file>
  
<prompt>:$ sudo dpkg -i <deb file><br />
 
  
assuming you are in the folder where you downloaded it.
+
==== '''RPM-based systems''' (not yet available from the official site, see below), ====
 +
'''Purging''' has two steps:
 +
 
 +
:::<prompt>$ dnf list installed “oscar*”
 +
 
 +
Don’t forget the quotes around oscar*. The first column is the package-name followed by the architecture.
 +
 
 +
Then remove the package with:
 +
 
 +
:::<prompt>$ sudo dnf remove <package-name>
  
For '''RPM-based systems''' (from v1.1.1), you may need to pre-install some libraries (the example below is for Fedora 31):<br />
+
Then '''Installation'''
 +
You may need to pre-install some libraries (the example below is for Fedora 31):
  
<prompt>$ sudo dnf install mesa-libGLU-9.0.1-1.fc31<br />
+
:::<prompt>$ sudo dnf install mesa-libGLU-9.0.1-1.fc31
  
<prompt>$ sudo dnf install qt5-qtserialport-5.12.5-1.fc31<br />
+
:::<prompt>$ sudo dnf install qt5-qtserialport-5.12.5-1.fc31
  
before you install OSCAR:<br />
+
before you install OSCAR:
  
<prompt>$ sudo dnf localinstall <rpm files><br />
+
:::<prompt>$ sudo dnf localinstall <rpm files>
  
 
Be careful: you have to specify a path for localinstall. If the file is in the current directory, put ./ before it.
 
Be careful: you have to specify a path for localinstall. If the file is in the current directory, put ./ before it.
  
 
_________________________________________________________________________________________________
 
_________________________________________________________________________________________________
===OLD Folder structure===
+
 
 +
===NEW Folder structure===
 
The folder structure is supposed to suit the FHS (Filesystem Hierarchy Standard)
 
The folder structure is supposed to suit the FHS (Filesystem Hierarchy Standard)
  
Line 64: Line 82:
 
* /usr/share/icons (icon files in some subdirectory)
 
* /usr/share/icons (icon files in some subdirectory)
 
* /usr/share/applications (.desktop file is the shortcut).
 
* /usr/share/applications (.desktop file is the shortcut).
 
===Ubuntu and Debian===
 
To install OSCAR on Ubuntu or Debian, download the appropriate file [https://www.sleepfiles.com/OSCAR/ from the official OSCAR web site] for your platform.  Then:
 
 
<pre>sudo dpkg -i [OSCAR package filename.deb]</pre>
 
 
Substitute the name of the package you downloaded. It is important to use sudo rather than install as root, so that the package will install the .desktop file in your account.
 
 
To remove OSCAR:
 
<pre>sudo dpkg -r oscar</pre>
 
  
 
===Fedora, CentOS and Redhat===
 
===Fedora, CentOS and Redhat===

Latest revision as of 16:15, 3 June 2020

Full-48.png

Afrikaans / في الصفحة / български / 中国 / 臺灣 / čeština/ Dansk / Deutsch / Ελληνικά / Español / Filipino / Français / עברית / Magyar / Italiano / 日本語 / 한국어 / Nederlands / Norsk / Polskie / Português / Română / Pусский / Suomalainen / Svenska / ภาษาไทย / Türkçe
--> Do not use these buttons when you are on a translated page. Just close this tab to go back. <--



Back to OSCAR Installation

Linux version

Linux Installation Notes

For version 1.1.0 and later the locations of the files used by OSCAR have changed to match the recommendations of the freedesktop.org. To accommodate this, it is recommended that any older versions of OSCAR, including -beta and -test versions, should be removed – more exactly, purged - before installation of version 1.1.0.

Note that removing the OSCAR package will not affect the OSCAR_Data that has already been imported.

To install OSCAR on Ubuntu or Debian, download the appropriate file from the official OSCAR web site for your platform.

Debian-based systems

First, purging is done in two steps:

<prompt>$ dpkg -l | grep -i oscar

will display long lines starting with two letters, followed by the package-name and then the version and more stuff.

The next step is to purge each package listed above, using:

<prompt>$ sudo apt purge <package-name>

If your long line started with three letters, especially if the third was an R, you will need to use the following:

<prompt>$ sudo dpkg --force-remove-reinstreq remove <package name>

Then, installation:

<prompt>:$ sudo apt install ./<deb file>

assuming you are in the folder where you downloaded it.

On Ubuntu 18.04 systems, this may result in a greyed-out square for the OSCAR desktop icon, and an incomplete installation.

The fix is to 'sudo apt remove oscar' and then repeat the installation step above.

RaspberryPi OS

This package has been tested on a Raspberry Pi 4B with 4 GB memory and a USB attached SSD, and it should work on a 3B or 3B+ with a USB attached hard drive. A separate SD card reader is also required.

The installation uses a terminal window, and is the same as the Debian systems above:

<prompt>$ sudo apt install ./<deb file>


RPM-based systems (not yet available from the official site, see below),

Purging has two steps:

<prompt>$ dnf list installed “oscar*”

Don’t forget the quotes around oscar*. The first column is the package-name followed by the architecture.

Then remove the package with:

<prompt>$ sudo dnf remove <package-name>

Then Installation You may need to pre-install some libraries (the example below is for Fedora 31):

<prompt>$ sudo dnf install mesa-libGLU-9.0.1-1.fc31
<prompt>$ sudo dnf install qt5-qtserialport-5.12.5-1.fc31

before you install OSCAR:

<prompt>$ sudo dnf localinstall <rpm files>

Be careful: you have to specify a path for localinstall. If the file is in the current directory, put ./ before it.

_________________________________________________________________________________________________

NEW Folder structure

The folder structure is supposed to suit the FHS (Filesystem Hierarchy Standard)

  • /usr/bin/OSCAR (executable)
  • /usr/share/OSCAR/ (Html & Translation files)
  • /usr/share/doc (miscellaneous files need for package )
  • /usr/share/icons (icon files in some subdirectory)
  • /usr/share/applications (.desktop file is the shortcut).

Fedora, CentOS and Redhat

There is an unofficial repository with Fedora and CentOS/RHEL packages of OSCAR at Fedora Copr, maintained by a forum member.

To install in Fedora:

sudo dnf copr enable johanh/oscar
sudo dnf install oscar

To install in CentOS:

sudo yum install epel-release
sudo yum-config-manager --add-repo https://copr.fedorainfracloud.org/coprs/johanh/oscar/repo/epel-7/johanh-oscar-epel-7.repo
sudo yum install oscar

To uninstall, use Gnome Software or on command line "sudo dnf erase oscar" (Fedora) or "sudo yum erase oscar" (CentOS/RHEL). For further details, visit the referenced Fedora Copr page.

Source package is taken directly from the OSCAR project and compiled and packaged for the different Linux distributions (for security and integrity, source rpm package can be compared and verified with original source package if necessary). If there are any problems with the installation, contact johanh on the apneaboard forum.

Arch Linux

There is an OSCAR package in the Arch Linux user repository or AUR.

If you are using yay, you can install the oscar package with the following command:

sudo yay oscar-git

Similarly, with yaourt:

sudo yaourt -S oscar-git

The OSCAR package in AUR is available here: https://aur.archlinux.org/packages/oscar-git/

If you want to manually install packages from AUR, read the following short blog post: https://arashmilani.com/post?id=85




Donate to Apnea Board