Skip to content

Commit 27f9649

Browse files
Bare metal ubuntu update 22 [BUGFIX] (automatic-ripping-machine#1368)
* Bare metal Ubuntu 22 apt installs updated to account for ubuntu 22.04 Minor wiki reference fixes * Update Ubuntu-20.04-Automatic-Installation.md * Update armui.service fixing which was discovered when executing bare metal. DebianInstaller.sh uses armui.service to set up the service. Without referring the venv python, none of the packages are detected, and the ui won't run. * Update nvidia.md basic notes on how to set up driver. distro drivers are often slow to be released. * Script tidy and Removal Ubuntu Script is not required as testing on 20.04 and 24.02 has been successful. docker-setup.sh and ubuntu-quicksync.sh moved into the installers folder for clarity when browsing folders. * Wiki Update for Ubuntu 24.02 Debian script tested successfully on bare metal install of 24.02 Ubuntu. Wiki pages updated to reflect file changes and script replacements. * [Automated] Release: patch - Version from 2.12.1 to 2.12.2 * Further Documentation updates * removed reference to wrong branch in documentation --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent be48715 commit 27f9649

19 files changed

+55
-315
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ body:
5656
multiple: true
5757
options:
5858
- all
59+
- ubuntu-24.02
5960
- ubuntu-20.04
6061
- ubuntu-18.04
6162
- Debian 10

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![GitHub contributors](https://img.shields.io/github/contributors/automatic-ripping-machine/automatic-ripping-machine)](https://github.com/automatic-ripping-machine/automatic-ripping-machine/graphs/contributors)
1010
[![GitHub last commit](https://img.shields.io/github/last-commit/automatic-ripping-machine/automatic-ripping-machine?)](https://github.com/automatic-ripping-machine/automatic-ripping-machine/commits/v2_devel)
1111

12-
[![GitHub license](https://img.shields.io/github/license/automatic-ripping-machine/automatic-ripping-machine)](https://github.com/automatic-ripping-machine/automatic-ripping-machine/blob/v2_devel/LICENSE)
12+
[![GitHub license](https://img.shields.io/github/license/automatic-ripping-machine/automatic-ripping-machine)](https://github.com/automatic-ripping-machine/automatic-ripping-machine/blob/main/LICENSE)
1313

1414
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/automatic-ripping-machine/automatic-ripping-machine?label=Latest%20Stable%20Version)](https://github.com/automatic-ripping-machine/automatic-ripping-machine/releases)
1515
[![GitHub release Date](https://img.shields.io/github/release-date/automatic-ripping-machine/automatic-ripping-machine?label=Latest%20Stable%20Released)](https://github.com/automatic-ripping-machine/automatic-ripping-machine/releases)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.12.1
1+
2.12.2

arm_wiki/Alternate-Install-OMV.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Auto Install Script For OpenMediaVault/Debian
1+
# Auto Install Script For OpenMediaVault/Debian/Ubuntu 20,22 24.02
22

33
> > [!CAUTION]
44
> This installation method is not supported or maintained by the ARM Developers.
@@ -15,9 +15,9 @@ This is **not recommended** for first time installations. This was only really i
1515
## For the attended install use:
1616
```
1717
sudo apt install wget
18-
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/v2_devel/scripts/installers/debian-install.sh
19-
sudo chmod +x debian-install.sh
20-
sudo ./debian-install.sh
18+
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/main/scripts/installers/DebianInstaller.sh
19+
sudo chmod +x DebianInstaller.sh
20+
sudo ./DebianInstaller.sh
2121
sudo chmod +x /opt/arm/scripts/update_key.sh
2222
```
2323
```reboot```

arm_wiki/Docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If running in a VM, make sure all disks are available to your distro via hardwar
1616
```
1717
sudo apt install wget lsscsi
1818
lsscsi -g
19-
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/main/scripts/docker-setup.sh
19+
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/main/scripts/installers/docker-setup.sh
2020
sudo chmod +x docker-setup.sh
2121
```
2222

arm_wiki/FAQ.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,13 @@ The reason these aren't enabled by default is that Rip method being set to mkv c
8686

8787
- Make sure you only install drivers for your own graphics card. Installing incorrect drivers can cause issues with AMD VCE (personally mesa-vulkan-drivers caused a headache, your own may vary)
8888

89-
- Did you compile HandBrakeCLI from source ? Currently, VCE in not enabled by default by any distro. To enable VCE you **MUST** Compile HandBrake from source with the `--enable-vce` flag set. You can see an example of the code [HERE](https://github.com/1337-server/automatic-ripping-machine/blob/v2.2_dev_ubuntu/scripts/ubuntu-quicksync.sh)
89+
- Did you compile HandBrakeCLI from source ? Currently, VCE in not enabled by default by any distro. To enable VCE you **MUST** Compile HandBrake from source with the `--enable-vce` flag set. You can see an example of the code [HERE](https://github.com/1337-server/automatic-ripping-machine/blob/v2.2_dev_ubuntu/scripts/installers/ubuntu-quicksync.sh)
9090

9191

9292
## I cant get NVIDIA NVENC to work
9393
- I have no idea, and I can't test.
94+
- Consider installing the latest driver from Nvidia and checking for certain your
95+
- Have you checked our Nvidia notes [here](nvidia)
9496

9597
## Other problems
9698
- Check A.R.M log files

arm_wiki/General-Troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ If you need any help feel free to open an issue. Please see the wiki about post
5454
## Changing logging to DEBUG mode
5555
- Debugging mode is not enabled by default, but it offers a lot more information. If you're experiencing problems the first thing you should do is change logging to DEBUG
5656

57-
- You can enable Debugging by changing `LOGLEVEL` in your [arm.yaml](https://github.com/automatic-ripping-machine/automatic-ripping-machine/wiki/arm.yaml) to `LOGLEVEL: "DEBUG"`
57+
- You can enable Debugging by changing `LOGLEVEL` in your [arm.yaml](https://github.com/automatic-ripping-machine/automatic-ripping-machine/wiki/Config-arm.yaml) to `LOGLEVEL: "DEBUG"`
5858

5959
- This gives a lot more information to help track down any problems.
6060

arm_wiki/Getting-Started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Operation of ARM does not require much in the way of system requirements, althou
2626
- 2 to 8 GB for transcoding high definition video (720p/1080p)
2727
- 6 to 16 GB or more for transcoding ultra high definition video (2160p 4K)
2828
- One or more optical drives to rip Blu-Rays, DVDs, and CDs
29+
(Optional)
30+
- a (GPU)[#Additional-Hardware-Setup]
2931
- Storage:
3032
- ARM Docker container 2-4 GB
3133
- Audio CD: <1GB per CD ripped

arm_wiki/Home.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ This is a small project with few maintainers. As such we do not have the time to
2222

2323
> [!WARNING]
2424
> Please keep in mind that the regular support of Ubuntu 20.04 is end-of-life in April 2025. Due to this we ***highly*** recommend running a Docker container instead and a native installation is discouraged.
25+
> Ubuntu 24.02 has had initial testing.
2526
2627
Please note that if you open an issue to ask for help, if the OS you are using is not on this list you will be asked to reimage and try again or your issue will be closed.
2728

arm_wiki/Setting-up-(auto-install).md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,14 @@
33
There are various ways to setup ARM, the simplest would be to use the scripts inside the scrips folder. However these are not perfect and can sometimes fail.
44
The best way to setup ARM for a new user is to follow along from here [Debian](https://github.com/automatic-ripping-machine/automatic-ripping-machine/wiki/Setting-up-ARM-manually-(Debian-OMV)) or [Ubuntu](https://github.com/automatic-ripping-machine/automatic-ripping-machine/wiki/Setting-up-ARM-manually-(Ubuntu))
55

6-
## Install Script For OpenMediaVault/Debian
6+
## Install Script For OpenMediaVault/Debian/Ubuntu 20, 22.04 24.02(Alpha)
77

88
**For the attended install use:**
99
```
1010
sudo apt install wget
11-
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/v2_devel/scripts/debian-setup.sh
12-
sudo chmod +x debian-setup.sh
13-
sudo ./debian-setup.sh
14-
```
15-
16-
**For the silent install use**
17-
```
18-
sudo apt -qqy install wget
19-
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/v2_devel/scripts/deb-install-quiet.sh
20-
sudo chmod +x deb-install-quiet.sh
21-
sudo ./deb-install-quiet.sh
11+
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/main/scripts/installers/DebianInstaller.sh
12+
sudo chmod +x DebianInstaller.sh
13+
sudo ./DebianInstaller.sh
2214
```
2315

2416
Then ```reboot``` to complete installation.
25-
26-
27-
## Install Script For Ubuntu 20.04
28-
29-
```
30-
sudo apt install wget
31-
wget https://raw.githubusercontent.com/automatic-ripping-machine/automatic-ripping-machine/v2_devel/scripts/ubuntu-20.04-install.sh
32-
sudo chmod +x ubuntu-20.04-install.sh
33-
sudo ./ubuntu-20.04-install.sh
34-
```
35-
36-
Then ```reboot``` to complete installation.

0 commit comments

Comments
 (0)