Laste ned stasjonsliste for DAB radio

1. To activate full scan, press MENU then up and down arrow to select <Autoscan>, finally press SELECT to confirm. The display will show “Scanning…” and a progressing slide bar.
2. All the stations that have been found will be stored automatically. To explore and listen to the found stations, press up and down arrow and then SELECT to confirm selection.

INstallasjon av scrcpy på Linux Mint

På Linux Mint:

sudo apt update
sudo apt install scrcpy adb

Eller last ned en nyere utgave i fra Github. Versjon 3 eller 4 av scrcpy.

På Android-telefonen:

  1. Gå til Innstillinger → Om telefonen
  2. Trykk 7 ganger på Build number / Byggnummer for å aktivere utvikleralternativer
  3. Gå til Utvikleralternativer
  4. Slå på USB debugging / USB-feilsøking
  5. Koble telefonen til PC-en med USB
  6. Godkjenn RSA/USB-feilsøking på telefonen

Trådløst etter første USB-oppsett:

adb tcpip 5555
adb shell ip route

Finn IP-adressen til telefonen, for eksempel 192.168.1.50, og kjør:

adb connect 192.168.1.50:5555
scrcpy

 

Lenovo Yoga og Linux Mint. Få touch screen screolling til å fungere.

  • Quick Test: Open your terminal and run env MOZ_USE_XINPUT2=1 firefox. Test if touch scrolling works.
  • Permanent Fix: Edit your Firefox desktop file so it always uses this flag by running
    sudo nano /usr/share/applications/firefox.desktop
    and changing the line that starts with Exec=firefox to Exec=env MOZ_USE_XINPUT2=1 firefox %u.
  • Browser Setting: You can also type about:config into your Firefox address bar, search for dom.w3c_touch_events.enabled, and set it to 1. [1, 2]

Fix for Lenovo Yoga som fryser med Linux Mint.

The AMDGPU Boot Parameter (Most Common)If your Lenovo laptop features an AMD Ryzen processor, a known driver bug handling power savings causes random freezing.

Adding a specific argument to the GRUB bootloader stabilizes the GPU.

Open your terminal (Ctrl + Alt + T).

Run this command to edit the GRUB configuration file:

bash sudo nano /etc/default/grub

Look for the line that starts with GRUB_CMDLINE_LINUX_DEFAULT.

It usually looks like this:textGRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”

Add amdgpu.dcdebugmask=0x12 inside the quotes.

It should now look like this:

textGRUB_CMDLINE_LINUX_DEFAULT=”quiet splash amdgpu.dcdebugmask=0x12″

If you have a Lenovo Legion or newer model and this specific value fails, users on the Linux Mint Forums noted that amdgpu.dcdebugmask=0x10 also works).

Save and exit: Press Ctrl + O, hit Enter, then press Ctrl + X.

Update GRUB to apply the changes:

bash sudo update-grub

Restart your laptop.