Bluetooth will not turn on Lenovo Legion 5 Pro (Gen 10) Laptop https://askubuntu.com/questions/1562111/bluetooth-will-not-turn-on-lenovo-legion-5-pro-gen-10-laptop

I tried a lot of online solutions and nothing worked. Then I provided lspci, hwinfo, lsusb, and systemctl status logs to Gemini Deep Research and asked it to write a troubleshooting guide fixing the problem. I was absolutely astonished when it worked. Here it is for the next person facing this issue and there's even good information in here for the developers of some of these major packages about the root cause that is apparently addressed in kernel 6.18.

My prompt: I have purchased a Lenovo Legion 5 Pro Laptop with the NVIDIA RTX 5070 and installed Ubuntu 25.10. Bluetooth does not work and will not turn on. When you go to settings and try to turn Bluetooth on it immediately turns back off and won't allow you to turn it on. Prepare a troubleshooting document that walks me through how to try to fix it, with each command clearly laid out. Note that one proposal online to turn the laptop off, unplug it from power and then hold the power button down for 30 seconds to reset something has been attempted and did not change anything. Also the BIOS on this laptop does not appear to have any settings related to Bluetooth.

Omnibook Flip Wifi Disconnecting and Reconnecting Constantly https://askubuntu.com/questions/1562110/omnibook-flip-wifi-disconnecting-and-reconnecting-constantly

My wifi keeps disconnecting and reconnecting at random. I've tried so many things to fix it. My wifi adapter is:

62:00.0 Network controller: MEDIATEK Corp. MT7922 802.11ax PCI Express Wireless Network Adapter (rev 02)

So far, I've tried:

  1. Using sudo nano /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf, changing wifi.powersave to 0 and 2, with no success.

  2. A script I found online:

#!/bin/bash

# Function to set power save for a given interface
set_power_save() {
    local interface=$1
    local state=$2
    echo "Setting power save to $state for $interface..."
    
    if sudo iw dev $interface set power_save $state; then
        echo "Power save set to $state for $interface using iw command."
    else
        echo "Failed to set power save using iw command. Please check your permissions or wireless interface status."
        return 1
    fi
}

# Function to get and display power save status
get_power_save_status() {
    local interface=$1
    local status=$(iw dev $interface get power_save | awk '{print $3}')
    echo -n "$interface: Power save: "
    if [ "$status" = "on" ]; then
        echo "on"
    elif [ "$status" = "off" ]; then
        echo "off"
    else
        echo "unknown (raw output: $status)"
    fi
}

# Function to make changes persistent
make_persistent() {
    local state=$1
    echo "Making power save settings persistent..."
    
    # Create a script to be executed by the service
    cat << EOF | sudo tee /usr/local/bin/set-wifi-power-save.sh > /dev/null
#!/bin/bash
sleep 10  # Wait for network interfaces to be fully up
for interface in \$(iw dev | awk '\$1=="Interface"{print \$2}'); do
    iw dev \$interface set power_save $state
    echo "Set power_save $state for \$interface"
done
EOF
    sudo chmod +x /usr/local/bin/set-wifi-power-save.sh

    # Create a systemd service file
    cat << EOF | sudo tee /etc/systemd/system/wifi-power-save.service > /dev/null
[Unit]
Description=Set WiFi Power Save
After=network-online.target
Wants=network-online.target

[Service]
Type=oneshot
ExecStart=/usr/local/bin/set-wifi-power-save.sh
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target
EOF

    # Reload systemd, enable and start the service
    sudo systemctl daemon-reload
    sudo systemctl enable wifi-power-save.service
    sudo systemctl start wifi-power-save.service
    
    echo "Persistent service created and enabled."
}

# Function to install a package if not installed
install_if_needed() {
    local package=$1
    if ! command -v $package &> /dev/null; then
        echo "$package not found, installing..."
        if [ -f /etc/fedora-release ]; then
            sudo dnf install -y $package
        elif [ -f /etc/lsb-release ]; then
            sudo apt-get update
            sudo apt-get install -y $package
        else
            echo "Unsupported Linux distribution. Please install $package manually."
            exit 1
        fi
    else
        echo "$package is already installed."
    fi
}

# Install iw and lshw if necessary
install_if_needed iw
install_if_needed lshw
clear

# Get all wireless interfaces
wireless_interfaces=$(iw dev | awk '$1=="Interface"{print $2}')

if [ -z "$wireless_interfaces" ]; then
    echo "No wireless interfaces found."
    exit 1
fi

# Prompt user for power save state
echo "Choose power save state:"
echo "1) On"
echo "2) Off"
read -p "Enter your choice (1 or 2): " choice

case $choice in
    1) state="on" ;;
    2) state="off" ;;
    *) echo "Invalid choice. Exiting."; exit 1 ;;
esac

# Set power save for each wireless interface
for interface in $wireless_interfaces; do
    set_power_save $interface $state
done

# Verify power save status
echo -e "\nVerifying power save status:"
for interface in $wireless_interfaces; do
    get_power_save_status $interface
done

# Make changes persistent
make_persistent $state

echo -e "\nPower save settings applied and made persistent."
echo "Changes should persist across reboots."
echo "You can check the status of the persistent service with: sudo systemctl status wifi-power-save.service"
echo "If issues persist, check the system logs with: sudo journalctl -u wifi-power-save.service"

I since disabled this script''s effects after it caused issues switching from network to network and made network discovery impossible after toggling wifi with:

sudo systemctl disable wifi-power-save.service

sudo systemctl stop wifi-power-save.service

sudo rm /etc/systemd/system/wifi-power-save.service

sudo rm /usr/local/bin/set-wifi-power-save.sh

sudo systemctl daemon-reload

  1. I tried switching to ipv6 only from the network settings, which seemed to work, but it's hard to tell given the randomness of the disconnections. It's also just not sustainable.

  2. I tried forgetting and re-adding the wifi, and the issues eventually continued.

  3. I heard that messing with the kernel might fix it, but this also doesn't seem like a sustainable solution and typically applies to older wifi cards, where this laptop is a higher end modern model.

  4. I've settled at the moment with leaving powersave-on.conf set to 3 and just doing ipv4 only, but again, this is likely not sustainable long term.

Some system info:

Distributor ID: Ubuntu Description: Ubuntu 25.10 Release: 25.10 Codename: questing 6.17.0-8-generic linux-generic: Installed: (none) Candidate: 6.17.0-8.8 Version table: 6.17.0-8.8 500 500 us.archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages 500 security.ubuntu.com/ubuntu questing-security/main amd64 Packages 6.17.0-5.5 500 500 us.archive.ubuntu.com/ubuntu questing/main amd64 Packages

I did a reboot after each fix attempt. This is very frustrating.

Update: It has oddly stopped occurring with both ipv4 and ipv6 enabled. I renamed the SSID to something else, then went to saved networks in wifi settings and forgot them all, then rebooted and re-added the network. Not sure if this will remain this way, but at the moment, there have been no disconnects for about an hour. All settings are more or less unchanged otherwise.

Ubuntu Server installation consistently fails at "curtin extract" stage (USB installer) https://askubuntu.com/questions/1562109/ubuntu-server-installation-consistently-fails-at-curtin-extract-stage-usb-ins

I’m trying to install Ubuntu Server on an older PC and keep hitting the same installer crash, regardless of version or USB creation method. I’m hoping someone can help pinpoint what’s going wrong.

Hardware:

  • AMD A10-5700 APU (64-bit), 3.4 GHz / 2 cores / 4 logical processors
  • 8GB of ram
  • AMD Radeon HD 7800 series
  • Samsung SSD 830 Series, 120 GB (SATA)
  • Windows 7 OS

Ubuntu versions tested:

  • 24.04.3 Live Server (amd64)
  • 22.04.3 Live Server (amd64)

USB creation methods:

  • Rufus
  • balenaEtcher

Both Win7 compatible versions.

Installer behavior

Installer boots fine. Language, keyboard, network setup all work

Storage is configured manually:

  • Existing EFI partition (VFAT) mounted at /boot/efi

  • EXT4 partition mounted at /

  • NTFS partition left untouched

The installer proceeds normally until after the profile configuration step. About 10–20 seconds later, the installer crashes with:

“An error occurred during installation”

The log shows Subiquity / curtin messages and consistently fails during:

  • curtin extract

  • “acquiring and extracting image”

  • “writing install sources to disk”

Things I have tried:

  • Different Ubuntu Server versions (22.04.3 and 24.04.3)

  • Different USB creation tools

  • Reflashing USBs multiple times

  • Manual partitioning vs defaults

  • Skipping installer updates

  • Ubuntu Server vs Ubuntu Server (minimized)

What I'm trying to understand:

Is this a known issue with older AMD APUs and newer Ubuntu Server installers? Could this be related to Subiquity / curtin, storage handling, or kernel compatibility? Is there a known workaround (older ISO, installer flags, legacy boot settings, etc.)?

Thanks, and take care.

Ubuntu 24.04.3 4k 60hz Display Glitching https://askubuntu.com/questions/1562108/ubuntu-24-04-3-4k-60hz-display-glitching

Title contains my specs. I am attempting to use do normal activities through GNOME such as move my mouse, open firefox, more windows around but the screen is very glitchy. It looks like a bit of screentair and possible lower FPS than monitor (only 60hz). Has anyone experienced this?

Trying & failing to install ubuntu studio 24.04.03 onto a gen 9 Thinkpad carbon i5-1135G7 that has no OS https://askubuntu.com/questions/1562107/trying-failing-to-install-ubuntu-studio-24-04-03-onto-a-gen-9-thinkpad-carbon

I'm having issues trying to install ubuntu studio 24.04.03 onto a gen 9 Thinkpad carbon i5-1135G7 that has no OS. It loads the GNU GRUB, but what do I do to get the install going from the USB? Exit takes me back to BIOS where I can select boot from USB. I feel like I'm almost precisely where I need to be. I chalk it all up to user ignorance. Is there any help?

dcp-7030 scanner setup on Ubuntu 25.10 https://askubuntu.com/questions/1562106/dcp-7030-scanner-setup-on-ubuntu-25-10

For the Brother printer model: dcp-7030 scanner setup, how do I exactly troubleshoot/setup the scanner properly on Ubuntu 25.10?

So far, I tried following the instructions here https://support.brother.com/g/b/downloadtop.aspx?c=ca&lang=en&prod=dcp7030_all but was not successful in getting the scanner functionality of the printer to work properly.
This is a printer connected to a computer using a printer cable only, with no intent to use a internet connection.

The print function works from computer to Printer works, but whenever attempting a scan, the Printer will not be able to connect to computer, and thus fail the document scanning.

It appears I cannot post full terminal history due to captcha issues, but one of the main error message was:

dpkg: error: cannot access archive 'libsane_1.2.1-1_amd64.deb'
You are going to install following packages.
   brscan3-0.2.13-1.amd64.deb

....
dpkg: brscan-skey: dependency problems, but configuring anyway as you requested:
 brscan-skey depends on libsane (>= 1.0.11-3); however:
  Package libsane is not installed.

and

Setting up brscan-skey (0.3.2-0) ...
apt-get install libusb-0.1-4
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 brscan-skey : Depends: libsane (>= 1.0.11-3) but it is not installable
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
Ubuntu 22.04 an issue with Opera E: Conflicting values set for option Signed-By regarding source https://askubuntu.com/questions/1562105/ubuntu-22-04-an-issue-with-opera-e-conflicting-values-set-for-option-signed-by

I have this issue happened recently which is when i try to update Ubuntu 22.04 i get this error:

Conflicting values set for option Signed-By regarding source https://deb.opera.com/opera-stable/ stable: /usr/share/keyrings/opera-browser.gpg !

I purged Opera and tried to remove the .gpg files that belong to Opera from the keyrings directory but nothing changed. Any help would be appreciated!

24.04.03 LTE Acitvation of network connection failed https://askubuntu.com/questions/1562104/24-04-03-lte-acitvation-of-network-connection-failed

Specifically for Ethernet enp2s0 (RTL8168g/8111g). It suddenly stopped working after many years. I have not changed any *.conf or system files. System is running live patch (Ubunu Pro).

I can ping the IP assigned to the port from another computer, but attempts to restart NetworkManager are unsuccessful. I normally don't use the WiFi port (wlp3s0), but when activated it works fine.

Perhaps not relevant, but I also lost printer connections (which are on Ethernet).

I get periodic pop-up system message, presumably retries (I'm not sure what prompts this). systemctl and journalctl produce many long lines. I dump1Gfged jrn to file and edited to what I hope are relevant lines: –

Activation: starting connection 'Wired' (97386771-ed1a-4df5-b63a-2c7c88e82f69) 
state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed') 
state change: prepare -> config (reason 'none', sys-iface-state: 'managed') 
state change: config -> ip-config (reason 'none', sys-iface-state: 'managed') 
IP address 10.42.12.25 cannot be configured because it is already in use in the network by host 74:83:C2:8F:65:3A 
state change: ip-config -> failed (reason 'ip-config-unavailable', sys-iface-state: 'managed')
Recovery menu does not appear in Ubuntu 24.04 https://askubuntu.com/questions/1562100/recovery-menu-does-not-appear-in-ubuntu-24-04

I'm a Linux newbie. (Switched from Windows a month ago). I installed Ubuntu 24.04 Desktop to an Asus laptop (I wiped Windows 10). I had no issues until today when my password would not take. When trying to recover, I can enter the Grub Menu, can choose Advanced Options, and can choose (Recovery Mode), but that's where things go sideways! After what I assume to be a "System Check" which ends with : Running /scripts/init-premount ... done there's no recovery menu!!! I tried using a live USB, but I can't seem to figure that out. I'm still looking for a definitive answer to this particular issue of "no recovery menu" in Ubuntu 24.04.

How does one identify the folder structure/file location to change the Directory: Lubuntu/Ubuntu/Pop!_OS https://askubuntu.com/questions/1562098/how-does-one-identify-the-folder-structure-file-location-to-change-the-directory

At current, in Pop!_OS, Lubuntu, and Ubuntu - using their default file explorer, the field containing a string (commonly identified as the ADDRESS BAR) fails to accurately display the actual address. Instead, on each distro, the Address Bar contains a truncated/abbreviated spoof of where the user is currently viewing in the GUI.

In an older post: Change Directory cd /home/Downloads "Directory Doesn't Exist" but cd /home does! [closed] user terdon provided a working shortcut of entering the desired directory (downloads), into the terminal, using the following string:

cd ~/Downloads

It was noted by the author, that in their specific situation with Pop!_OS, that the address bar, was not in fact an address bar, and 'copy pasting' that field would return an error in the terminal.

What more, it was identified the only way the author was able to identify the location of the file only by manually navigating to the file when its location in the system was already understood. Right Click and selecting 'properties' resulted in inconsistent results regarding a successful change directory.

On any of these distributions (which all use Ubuntu for the base of their functions) how does one either identify the folder structure/file location or FORCE the address bar, to display, always, the absolute, un-modified/truncated address such that with the inputs of CTRL+C followed by 'CTRL'+'V' users are able to copy/paste the address of the current directory, as viewed in the file explorer GUI, into the terminal.

Illustration of the Pop!_OS File Explorer : Illustration of the Ubuntu & Lubuntu File Explorer:

Thank you for your time and consideration.

Is there still space on my 0% ext4? https://askubuntu.com/questions/1562091/is-there-still-space-on-my-0-ext4
/dev/sdb1                3.6T  3.6T     0 100% /hdd-scratch

Above is the output of df -h

I'm on Proxmox and my HDD ext4 disk is at 100%, but for some reason, my bittorrent client is still able to write to it. I have double checked and made sure the BT client is not saving the download to elsewhere

  1. I'm able to delete files, but the space remains at 0%

  2. I'm also able to copy files, just tried a 300MB one and it worked

  3. How to I get it to reflect the remaining space again?

DIscord Issue with Electron (crash when activation video stream) 24.04 fixable by user? https://askubuntu.com/questions/1562054/discord-issue-with-electron-crash-when-activation-video-stream-24-04-fixable-b

I am having problem with Discord in my Ubuntu AMD set up.

At the moment, I can only stream my video if I start discord like this: (workaround)

LIBVA_DRIVER_NAME=disabled discord --disable-features=VaapiVideoDecoder --disable-gpu

I also have a log file, if I start It normally. But my question maybe simple. Can I fix it or have I to wait for Discord to solve it?

Disabling Hardware acceleration ind Discord, was not enough. I also tested all 3 separately with out any luck.

Discord log is full of sensitive data, So I will not share it here.

Edit: the main problem with the log is, that some sensitive information is clear and some is not so clear. So the main problem is to identify what the most of the IDs are for.

Discord 0.0.119
(electron) 'session.getPreloads' is deprecated and will be removed. Please use 'session.getPreloadScripts' instead.
(electron) 'session.setPreloads' is deprecated and will be removed. Please use 'session.registerPreloadScript' instead.
Starting app.
Starting updater.
12/20/2025, 8:29:57 PM GMT+1 [Modules] Modules initializing
12/20/2025, 8:29:57 PM GMT+1 [Modules] Distribution: remote
12/20/2025, 8:29:57 PM GMT+1 [Modules] Host updates: enabled
12/20/2025, 8:29:57 PM GMT+1 [Modules] Module updates: enabled
12/20/2025, 8:29:57 PM GMT+1 [Modules] Module install path: /home/$USER/.config/discord/0.0.119/modules
12/20/2025, 8:29:57 PM GMT+1 [Modules] Module installed file path: /home/$USER/.config/discord/0.0.119/modules/installed.json
12/20/2025, 8:29:57 PM GMT+1 [Modules] Module download path: /home/$USER/.config/discord/0.0.119/modules/pending
splashScreen.initSplash(false)
CDM component API found
[4232:1220/202957.471698:ERROR:media/gpu/vaapi/vaapi_wrapper.cc:1268] Empty codec maximum resolution
[4232:1220/202957.471792:ERROR:media/gpu/vaapi/vaapi_wrapper.cc:1178] FillProfileInfo_Locked failed for va_profile VAProfileJPEGBaseline and entrypoint VAEntrypointVLD
blackbox: 12/20/2025, 8:29:57 PM GMT+1 0 

... 20:31:37.309 › The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate as value and it is preloaded intentionally. amdgpu: The CS has cancelled because the context is lost. This context is innocent. [1220/203146.183558:ERROR:third_party/crashpad/crashpad/snapshot/elf/elf_dynamic_array_reader.h:64] tag not found [1220/203146.199000:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199014:WARNING:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:141] could not read annotation name at index 4 [1220/203146.199020:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199024:ERROR:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:128] could not read annotation at index 5 [1220/203146.199295:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199302:WARNING:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:141] could not read annotation name at index 4 [1220/203146.199306:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199310:ERROR:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:128] could not read annotation at index 5 [1220/203146.199333:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199337:WARNING:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:141] could not read annotation name at index 4 [1220/203146.199342:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199345:ERROR:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:128] could not read annotation at index 5 [1220/203146.199367:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199374:WARNING:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:141] could not read annotation name at index 4 [1220/203146.199378:ERROR:third_party/crashpad/crashpad/util/process/process_memory_linux.cc:50] pread64: Input/output error (5) [1220/203146.199382:ERROR:third_party/crashpad/crashpad/snapshot/crashpad_types/image_annotation_reader.cc:128] could not read annotation at index 5 [WebContents] crashed (reason: crashed, exitCode: 134)... reloading blackbox: 12/20/2025, 8:31:47 PM GMT+1 11 ❌ render-process-gone { reason: 'crashed', exitCode: 134 } blackbox: 12/20/2025, 8:31:47 PM GMT+1 12 Wrote 744848 byte minidump to /home/$USER/.config/discord/0.0.119/modules/crashlogs/12_20_2025__8_31_47_PM_GMT_1-0-minidump.dmp

blackbox: 12/20/2025, 8:31:47 PM GMT+1 13 Sentry report: {"contexts":{"trace":{"trace_id":"895870e796f1400f87830c89b3b1bc0d","span_id":"a03135184e40038b"},"app":{"app_name":"discord","app_version":"0.0.119","app_start_time":"2025-12-20T19:29:57.105Z"},"os":{"kernel_version":"6.8.0-90-generic","name":"Ubuntu Linux","version":"24.04"},"browser":{"name":"Chrome"},"chrome":{"name":"Chrome","type":"runtime","version":"138.0.7204.251"},"device":{"arch":"x64","family":"Desktop","language":"de","screen_density":1,"screen_resolution":"1920x1080","memory_size":33564135424,"free_memory":27990183936,"processor_count":16,"cpu_description":"AMD Ryzen 7 5800X 8-Core Processor","processor_frequency":3829},"node":{"name":"Node","type":"runtime","version":"22.19.0"},"runtime":{"name":"Electron","version":"37.6.0"},"electron":{"crashed_url":"https://discord.com/channels/ID","details":{"reason":"crashed","exitCode":134}}}, [... very large section of sensitiv date]

Firefox hardware decoding / encoding stopped working https://askubuntu.com/questions/1562046/firefox-hardware-decoding-encoding-stopped-working

Some weeks ago I noticed YouTube videos started being not very smooth. Clearly less than with Chromium counterparts. I had been switching Firefox release channel and something has to have broken. See:

enter image description here

Translation: all codecs are supported by the system (by software) although none can be decoded / encoded by hardware. Its been impossible to revert this situation. How can hardware decoding be enabled again? Thank you all.

P.S. Here the output for glxinfo -B and vainfo:

~$ **lsb_release -a**
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 25.10
Release:    25.10
Codename:   questing

~$ **glxinfo -B**
name of display: :0
display: :0  screen: 0
direct rendering: Yes
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 12282 MB
    Total available memory: 12282 MB
    Currently available dedicated video memory: 9852 MB
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: NVIDIA GeForce RTX 4070 Ti/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 580.95.05
OpenGL core profile shading language version string: 4.60 NVIDIA
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 4.6.0 NVIDIA 580.95.05
OpenGL shading language version string: 4.60 NVIDIA
OpenGL context flags: (none)
OpenGL profile mask: (none)

OpenGL ES profile version string: OpenGL ES 3.2 NVIDIA 580.95.05
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20

~$ **vainfo**
Trying display: wayland
libva info: VA-API version 1.22.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/nvidia_drv_video.so
libva info: va_openDriver() returns -1
vaInitialize failed with error code -1 (unknown libva error),exit

After installing nvidia-vaapi-driver:

~$ vainfo
Trying display: wayland
libva info: VA-API version 1.22.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/nvidia_drv_video.so
libva info: Found init function __vaDriverInit_1_0
libva info: va_openDriver() returns 0
vainfo: VA-API version: 1.22 (libva 2.22.0)
vainfo: Driver version: VA-API NVDEC driver [direct backend]
vainfo: Supported profile and entrypoints
      VAProfileMPEG2Simple            : VAEntrypointVLD
      VAProfileMPEG2Main              : VAEntrypointVLD
      VAProfileVC1Simple              : VAEntrypointVLD
      VAProfileVC1Main                : VAEntrypointVLD
      VAProfileVC1Advanced            : VAEntrypointVLD
      VAProfileH264Main               : VAEntrypointVLD
      VAProfileH264High               : VAEntrypointVLD
      VAProfileH264ConstrainedBaseline: VAEntrypointVLD
      VAProfileHEVCMain               : VAEntrypointVLD
      VAProfileVP8Version0_3          : VAEntrypointVLD
      VAProfileVP9Profile0            : VAEntrypointVLD
      VAProfileAV1Profile0            : VAEntrypointVLD
      VAProfileHEVCMain10             : VAEntrypointVLD
      VAProfileHEVCMain12             : VAEntrypointVLD
      VAProfileVP9Profile2            : VAEntrypointVLD
      VAProfileHEVCMain444            : VAEntrypointVLD
      VAProfileHEVCMain444_10         : VAEntrypointVLD
      VAProfileHEVCMain444_12         : VAEntrypointVLD
Installed new RX 9070XT OC Tiachi GPU on ubuntu 25.10. GPU is not recognized https://askubuntu.com/questions/1560704/installed-new-rx-9070xt-oc-tiachi-gpu-on-ubuntu-25-10-gpu-is-not-recognized

SOLVED EDIT: Changed PSU from 750W to 1000W and it's working now, edited here at the request from the guy with the fedora in the comments.

Yesterday I installed a new GPU the Radeon RX 9070XT Tiachi. My system won't recognize the card.

Steps I have taken:

Motherboard MSI PRO B850-P wifi, updated BIOS:

latest version: AMI BIOS 7E56v2A75 2025-09-10

Updated my kernel from 6.17 to 6.18.0-061800-generic (Ubuntu 25.10)

also updated to Mesa 25.3.1

Uninstalled the AMD GPU stack and reinstalled the latest version:

dpkg -l | grep amdgpu

ii amdgpu-install 30.20.1.0.30200100-2255209.24.04 all AMDGPU driver repository and installer

ii libdrm-amdgpu1:amd64 2.4.125-1ubuntu0.1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime

ii libdrm-amdgpu1:i386 2.4.125-1ubuntu0.1 i386 Userspace interface to amdgpu-specific kernel DRM services -- runtime

Currently I have my HDMI plugged into the motherboard (R7 7700 cpu) so that I can see, because when I connect the DP to the GPU my screen stays black.

Here is some extra info from glxinfo:

name of display: :0
display: :0  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: AMD (0x1002)
    Device: AMD Ryzen 7 7700 8-Core Processor (radeonsi, raphael_mendocino, LLVM 20.1.8, DRM 3.64, 6.18.0-061800-generic) (0x164e)
    Version: 25.3.1
    Accelerated: yes
    Video memory: 512MB
    Unified memory: no
    Preferred profile: core (0x1)
    Max core profile version: 4.6
    Max compat profile version: 4.6
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.2
Memory info (GL_ATI_meminfo):
    VBO free memory - total: 67 MB, largest block: 67 MB
    VBO free aux. memory - total: 14155 MB, largest block: 14155 MB
    Texture free memory - total: 67 MB, largest block: 67 MB
    Texture free aux. memory - total: 14155 MB, largest block: 14155 MB
    Renderbuffer free memory - total: 67 MB, largest block: 67 MB
    Renderbuffer free aux. memory - total: 14155 MB, largest block: 14155 MB
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 512 MB
    Total available memory: 15823 MB
    Currently available dedicated video memory: 67 MB
OpenGL vendor string: AMD
OpenGL renderer string: AMD Ryzen 7 7700 8-Core Processor (radeonsi, raphael_mendocino, LLVM 20.1.8, DRM 3.64, 6.18.0-061800-generic)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 25.3.1 - kisak-mesa PPA
OpenGL core profile shading language version string: 4.60
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 4.6 (Compatibility Profile) Mesa 25.3.1 - kisak-mesa PPA
OpenGL shading language version string: 4.60
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile

OpenGL ES profile version string: OpenGL ES 3.2 Mesa 25.3.1 - kisak-mesa PPA
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 512 MB
    Total available memory: 15823 MB

I am curious about this bit, 512MB is from the integrated graphics, but the 16GB should be my new card?

I've been scouring the internet for a couple of hours trying to find a solution, but so far anything I've tried hasn't worked.

I hope someone can help me out with figuring this out, thanks in advance.


EDIT: Changed PSU from 750W to 1000W and it's working now, edited here at the request from the guy with the fedora in the comments.
How to fix JavaScript error when playing Shogun 2 Total War? https://askubuntu.com/questions/1546206/how-to-fix-javascript-error-when-playing-shogun-2-total-war

Playing Shogun 2 Total War on Ubuntu 24.04.2 LTS and the launcher comes up with this error (also shown in the picture below):

A JavaScript error occurred in the main process
 
Uncaught Exception:
Error: Cannot find module './screen'
    at Module. resolvefilename (module.js:543:15)
    at Function.Module._resolveFilename
(Z:\media\colcyborgclone\Main\Steam\steamapps\comron\To War SHOGUN 2\launcher\resources\electron.asar\common\reset-search-path...

    at Function.Module._Ioad (module.js:473:25)
    at Module.require (module.js:586:17)
    at require (internal/module.js:11:18)
    at Object.get [as screen]
(Z:\media\colopborgclone\Main\Steam\steamapps\common\To War SHOGUN 2\launcher\resources\electron.asar\browser\api\exports \electron.js:11:16)
    at checkForUndersizedResoloutions
(Z:\medialcolyborgcone\Main\Steam\steamapps\common\To War SHOGUN 2\launcher\resources\app.asar\main.js:329:35
    at App.<anonymous>
(Z:\media\colcyborgcione\Main\Steam\steamapps\common\To War SHOGUN 2\launcher\resources\app.asar\main.js:344:9)
    at emitTwo (events.js:131:20)
    at App.emit (events.js:214:7) 

Picture of above error

It goes into the game just fine and I can play it, but I like mods and want to know how to fix this. What can I do?

Connection failed (WiFi) https://askubuntu.com/questions/1545494/connection-failed-wifi

just upgraded to Ubuntu 24.04 and can’t connect to my WiFi. I can connect to other networks like my neighbours or my phone hotspot.

I get this notification: Connection failed / Activation of network connection failed

Update:

I tried to unable IPv6 and the connection appears to be successful, but still not connected and not browsing.

Also tried to change the configuration of my router in several different ways and always get same result

ERROR: Failed to determine the health of the cluster. Unexpected http status [503] https://askubuntu.com/questions/1433350/error-failed-to-determine-the-health-of-the-cluster-unexpected-http-status-50

Hi I trying to install elk on ubuntu20.04 and I used this resource https://kifarunix.com/install-elk-stack-8-x-on-ubuntu/ but when I want to run /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s kibana I get the flowing error

ERROR: Failed to determine the health of the cluster. Unexpected http status [503] how can I fix this?

pleas help me!!!

Can "gnome-network-displays" work on a Ubuntu 20.04.3 running on Oracle VM VirtualBox https://askubuntu.com/questions/1366771/can-gnome-network-displays-work-on-a-ubuntu-20-04-3-running-on-oracle-vm-virtu

I am trying to simulate casting my display to a miracast sink on linux. It seem like gnome-network-displays is a good option. I was having trouble getting it to work and was not sure if the fact I am running linux on a virtual machine on my windows device was the issue. It that an inherent problem?

Unable to install "Screenlets" in Ubuntu 20.04 LTS https://askubuntu.com/questions/1259039/unable-to-install-screenlets-in-ubuntu-20-04-lts

What I did to try to install screenlets:

sudo add-apt-repository ppa:screenlets/ppa
sudo apt update
sudo apt install screenlets screenlets-pack-all

The Output:

Reading package lists... Done  
Building dependency tree      
Reading state information... Done
E: Unable to locate package screenlets
E: Unable to locate package screenlets-pack-all

Gnome Version: 3.36.3 Ubuntu Version: 20.04 LTS

How to redirect/forward a port locally https://askubuntu.com/questions/1043754/how-to-redirect-forward-a-port-locally

I want to forward port 500 to port 2500 within the same host and the following was working on Lubuntu 16.04, but after rebooting and re-running iptables commands, I can't get it to work:

iptables -t nat -A PREROUTING -p udp -d 192.168.1.10 –dport 500 -j DNAT –to-destination 192.168.1.10:2500
iptables -A FORWARD -p udp -d 192.168.1.10 –dport 2500 -j ACCEPT

where 192.168.1.10 is the IP of my local host.
To test in one session I run netcat:

nc -u 192.168.1.10:500

and in a 2nd session run:

nc -l -u 500

and in a 3rd session run:

nc -l -u 2500

So I want data I enter in session 1 to be received on session 3, not session 2, which I did have working, but can't get it working again.

I also tried:

iptables -t nat -A PREROUTING -p udp --dport 500 -j REDIRECT --to-port 2500

but packets are still being received on port 500, not 2500.

ufw is disabled and to make sure iptables is working I tried:

iptables -A INPUT -p udp --dport 500 -j DROP

and then packets were not received on port 500 or 2500 as expected. Port forwarding is enabled:

# cat /proc/sys/net/ipv4/ip_forward
1

Session output below:

root@mike-TravelMate-8371:~/nat/out# iptables -t nat -S;iptables  -S
-P PREROUTING ACCEPT
-P INPUT ACCEPT
-P OUTPUT ACCEPT
-P POSTROUTING ACCEPT
-A PREROUTING -d 192.168.1.10/32 -p udp -m udp --dport 500 -j DNAT --to-destination 192.168.1.10:2500
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-A FORWARD -d 192.168.1.10/32 -p udp -m udp --dport 2500 -j ACCEPT
root@mike-TravelMate-8371:~/nat/out# nohup nc -l -u 2500 > nc_2500.out &
[1] 29806
root@mike-TravelMate-8371:~/nat/out# nohup: ignoring input and redirecting stderr to stdout

root@mike-TravelMate-8371:~/nat/out# nohup nc -l -u 500 > nc_500.out &
[2] 29810
root@mike-TravelMate-8371:~/nat/out# nohup: ignoring input and redirecting stderr to stdout

root@mike-TravelMate-8371:~/nat/out# jobs
[1]-  Running                 nohup nc -l -u 2500 > nc_2500.out &
[2]+  Running                 nohup nc -l -u 500 > nc_500.out &
root@mike-TravelMate-8371:~/nat/out# nc -u 192.168.1.10 500
test forwarding UDP port 500 to 2500
^C
[2]+  Done                    nohup nc -l -u 500 > nc_500.out
root@mike-TravelMate-8371:~/nat/out# head nc*.out
==> nc_2500.out <==

==> nc_500.out <==
test forwarding UDP port 500 to 2500
root@mike-TravelMate-8371:~/nat/out# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp2s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
    link/ether 00:1e:33:24:98:86 brd ff:ff:ff:ff:ff:ff
3: wlp1s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 00:22:fb:64:bd:42 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.10/24 brd 192.168.1.255 scope global dynamic wlp1s0
       valid_lft 85651sec preferred_lft 85651sec
    inet6 fd58:7f66:569d:5300:c5df:415:6c56:50d6/64 scope global temporary dynamic 
       valid_lft 6788sec preferred_lft 3188sec
    inet6 fd58:7f66:569d:5300:75d:bbe9:652e:6587/64 scope global mngtmpaddr noprefixroute dynamic 
       valid_lft 6788sec preferred_lft 3188sec
    inet6 fe80::e214:14f8:d95c:73a7/64 scope link 
       valid_lft forever preferred_lft forever
4: vboxnet0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
    link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff
    inet 192.168.56.1/24 brd 192.168.56.255 scope global vboxnet0
       valid_lft forever preferred_lft forever
    inet6 fe80::800:27ff:fe00:0/64 scope link 
       valid_lft forever preferred_lft forever
root@mike-TravelMate-8371:~/nat/out# ip route
default via 192.168.1.1 dev wlp1s0  proto static  metric 600 
192.168.1.0/24 dev wlp1s0  proto kernel  scope link  src 192.168.1.10  metric 600 
192.168.56.0/24 dev vboxnet0  proto kernel  scope link  src 192.168.56.1 linkdown 

The reason I want to forward ports is that I want to setup VPN between an external server and a guest running in Virtual box. The Vbox guest is using "NAT" network so Vbox has its own port forwarding to forward ports to the VM which has IP 10.0.2.15 so in Vbox the port forwarding rules are:

  1. TCP Host 2222 to Vbox guest 22
  2. UDP Host 4500 to Vbox guest 4500
  3. UDP Host 2500 to Vbox guest 500

The first means I can ssh to guest using "ssh -p 2222 root@192.168.1.10"

The second means I can send UDP packets on 4500, so I can send packets using "nc -u 192.168.1.10 4500" from host and I can see them being received on Vbox guest using "nc -l -u 4500" (the packets are NOT seen if you run "nc -l -u 4500" on the host)

The third is because Vbox will NOT forward reserved ports under 1024 so I cannot forward port 500, so with this rule I can use "nc -u 192.168.1.10 2500" on host and receive UDP packets on Vbox guest using "nc -l -u 500".

So I want to forward ports on UDP 500 on host to port 2500 so these are forwarded by Vbox to port 500 on the guest and this was working, but after rebooting and re-running iptables commands it didn't work and after several hours working on this I cannot figure out what I have done differently.

I have tried setting up iptables (and Vbox) with TCP forwadring and this doesn't work either and I have tried ufw and I have tried forwarding local ports with and without Vbox running and ports are never forwarded.

I have also tried forwarding port to a non-existent IP:

iptables -t nat -A PREROUTING -p udp -d 192.168.1.10 --dport 500 -j DNAT --to-destination 192.168.1.30:500
iptables -A FORWARD -p udp -d 192.168.1.30 --dport 500 -j ACCEPT

So here IP 192.168.1.30 does not exist but if I run "nc -u 192.168.1.10 500" in one session then I can still receive packets listening on host (IP of 192.168.1.10).

I have tried forwarding TCP port 3222 to port 22 so then I can test without netcat, but this doesn't work

root@mike-TravelMate-8371:~/nat# iptables -t nat -S;iptables  -S 
-P PREROUTING ACCEPT
-P INPUT ACCEPT
-P OUTPUT ACCEPT
-P POSTROUTING ACCEPT
-A PREROUTING -d 192.168.1.10/32 -p tcp -m tcp --dport 3222 -j DNAT --to-destination 192.168.1.10:22
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-A FORWARD -d 192.168.1.10/32 -p tcp -m tcp --dport 22 -j ACCEPT
root@mike-TravelMate-8371:~/nat# telnet 192.168.1.10 22
Trying 192.168.1.10...
Connected to 192.168.1.10.
Escape character is '^]'.
SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.4
^C
Connection closed by foreign host.
root@mike-TravelMate-8371:~/nat# telnet 192.168.1.10 3222
Trying 192.168.1.10...
telnet: Unable to connect to remote host: Connection refused
root@mike-TravelMate-8371:~/nat# 

So here I can reach ssh port directly using port 22, but I can't via 3222 so forwarding is not working.

How do you uninstall and remove Firefox in Ubuntu 18.04? https://askubuntu.com/questions/1039258/how-do-you-uninstall-and-remove-firefox-in-ubuntu-18-04

I am trying to remove/uninstall Firefox from Ubuntu 18.04. I have used sudo apt-get purge firefox. I have also deleted all the files I was told to delete for Firefox, but it is still there and opens.I don't like the new Firefox and don't want it. How can I remove it totally?

It isn't listed in the Software Apps, where you install or remove apps.

Ampak AP6212 wifi driver https://askubuntu.com/questions/938399/ampak-ap6212-wifi-driver

I have a mini-pc running Linux with the Ampak AP6212 chipset. The bluetooth and the WiFi modules are not working under Ubuntu 16.04. According to this site I need to install brcmfmac. Is this correct? If so, from which repository can I do so?

$ dmesg | grep brcm; ls /sys/firmware/efi/efivars
AcpiGlobalVariable-c020489e-6db2-4ef2-9aa5-ca06fc11d36a
AuthVarKeyDatabase-aaf32c78-947b-439a-a180-2e144ec37792
BackupPlatformLang-59d1c24f-50f1-401a-b101-f33e0daed443
Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c
Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c
Boot0002-8be4df61-93ca-11d2-aa0d-00e098032b8c
Boot0004-8be4df61-93ca-11d2-aa0d-00e098032b8c
Boot2001-8be4df61-93ca-11d2-aa0d-00e098032b8c
Boot2002-8be4df61-93ca-11d2-aa0d-00e098032b8c
Boot2003-8be4df61-93ca-11d2-aa0d-00e098032b8c
BootCurrent-8be4df61-93ca-11d2-aa0d-00e098032b8c
BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c
BootType-a04a27f4-df00-4d42-b552-39511302113d
BugCheckCode-ba57e015-65b3-4c3c-b274-659192f699e3
BugCheckParameter1-ba57e015-65b3-4c3c-b274-659192f699e3
BugCheckProgress-ba57e015-65b3-4c3c-b274-659192f699e3
certdb-59d1c24f-50f1-401a-b101-f33e0daed443
ColdQ2SEnableVariable-cccd8c8e-8915-4d12-bb76-0d49b4fc0dcd
ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c
ConInCandidateDev-59d1c24f-50f1-401a-b101-f33e0daed443
ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c
ConO ut-8be4df61-93ca-11d2-aa0d-00e098032b8c
ConOutCandidateDev-59d1c24f-50f1-401a-b101-f33e0daed443
ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c
CurrentPolicy-77fa9abd-0359-4d32-bd60-28f4e78f784b
Custom-a04a27f4-df00-4d42-b552-39511302113d
CustomSecurity-59d1c24f-50f1-401a-b101-f33e0daed443
db-d719b2cb-3d3a-4596-a3bc-dad00e67656f
dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c
dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f
dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c
ErrOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c
IrsiInfo-5bce4c83-6a97-444b-63b4-672c014742ff
KEK-8be4df61-93ca-11d2-aa0d-00e098032b8c
KEKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c
Lang-8be4df61-93ca-11d2-aa0d-00e098032b8c
LangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c
LastBootOSVariable-936d3077-9722-41a8-88ae-91a7b7594a3c
MemoryConfig-10ba6bbe-a97e-41c3-9a07-607ad9bd60e5
MemoryOverwriteRequestControl-e20939be-32d4-41be-a150-897f85d49829
MsdmAddress-fd21bf2b-f5d1-46c5-aee3-c60158339239
MTC-eb704011-1402-11d3-8e77-00a0c969723b
OfflineUniqueIDEKPubCRC-eaec226f-c9a3-477a-a826-ddc716cdc0e3
OfflineUniqueIDEKPub-eaec226f-c9a3-477a-a826-ddc716cdc0e3
OsIndications-8be4df61-93ca-11d2-aa0d-00e098032b8c
OsIndicationsSupported-8be4df61-93ca-11d2-aa0d-00e098032b8c
PhysicalBootOrder-59d1c24f-50f1-401a-b101-f33e0daed443
PK-8be4df61-93ca-11d2-aa0d-00e098032b8c
PKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c
PlatformCpuInfo-10ba6bbe-a97e-41c3-9a07-607ad9bd60e5
PlatformInfo-10ba6bbe-a97e-41c3-9a07-607ad9bd60e5
PlatformLang-8be4df61-93ca-11d2-aa0d-00e098032b8c
PlatformLangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c
Regparm-49e3577e-71fb-46cc-a4a3-21084b7bd99f
RestoreFactoryDefault-59d1c24f-50f1-401a-b101-f33e0daed443
SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c
SecureBootEnforce-59d1c24f-50f1-401a-b101-f33e0daed443
Setup-a04a27f4-df00-4d42-b552-39511302113d
SetupMode-8be4df61-93ca-11d2-aa0d-00e098032b8c
SignatureSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c
SmmEmmcCardDataVariable-3503b13d-2bd7-43ca-ba63-a1dfaa68da46
Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c
TrEEPhysicalPresence-f24643c2-c622-494e-8a0d-4632579c2d5b
TrEEPhysicalPresenceFlags-f24643c2-c622-494e-8a0d-4632579c2d5b
VendorKeys-8be4df61-93ca-11d2-aa0d-00e098032b8c

$ cat /etc/lsb-release; lspci -nnk | grep -iA3 net
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=Xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.2 LTS"

Link to wireless-info results.

Updated output of dmesg | grep brcm:

[    6.587443] brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 43430 rev 0 pmurev 24
[    6.590452] usbcore: registered new interface driver brcmfmac
[    7.706117] brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[    8.710637] brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[    9.714375] brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50

$ dmesg | grep brcm
[    6.590452] usbcore: registered new interface driver brcmfmac
[ 1503.630948] Modules linked in: asix usbnet mii input_leds joydev     hid_microsoft hid_generic gpio_keys axp20x_pek snd_soc_sst_baytrail_pcm axp288_adc snd_soc_sst_ipc snd_soc_sst_dsp snd_soc_sst_byt_rt5640_mach intel_rapl intel_soc_dts_thermal intel_powerclamp coretemp kvm_intel usbhid kvm irqbypass punit_atom_debug crc32_pclmul aesni_intel brcmfmac aes_i586 xts lrw gf128mul ablk_helper brcmutil cryptd cfg80211 bmc150_accel_spi bmc150_accel_i2c bmc150_accel_core jsa1212 kxcjk_1013 industrialio_triggered_buffer kfifo_buf snd_intel_sst_acpi industrialio snd_intel_sst_core snd_soc_rt5640 goodix snd_soc_sst_mfld_platform snd_soc_rl6231 snd_soc_core snd_compress ac97_bus snd_pcm_dmaengine snd_pcm snd_seq_midi snd_seq_midi_event snd_rawmidi mei_txe mei lpc_ich snd_seq snd_seq_device snd_timer 8250_fintek
[ 1503.730939] Modules linked in: asix usbnet mii input_leds joydev hid_microsoft hid_generic gpio_keys axp20x_pek snd_soc_sst_baytrail_pcm axp288_adc snd_soc_sst_ipc snd_soc_sst_dsp snd_soc_sst_byt_rt5640_mach intel_rapl intel_soc_dts_thermal intel_powerclamp coretemp kvm_intel usbhid kvm irqbypass punit_atom_debug crc32_pclmul aesni_intel brcmfmac aes_i586 xts lrw gf128mul ablk_helper brcmutil cryptd cfg80211 bmc150_accel_spi bmc150_accel_i2c bmc150_accel_core jsa1212 kxcjk_1013 industrialio_triggered_buffer kfifo_buf snd_intel_sst_acpi industrialio snd_intel_sst_core snd_soc_rt5640 goodix snd_soc_sst_mfld_platform snd_soc_rl6231 snd_soc_core snd_compress ac97_bus snd_pcm_dmaengine snd_pcm snd_seq_midi snd_seq_midi_event snd_rawmidi mei_txe mei lpc_ich snd_seq snd_seq_device snd_timer 8250_fintek
[ 1503.963036] Modules linked in: asix usbnet mii input_leds joydev hid_microsoft hid_generic gpio_keys axp20x_pek snd_soc_sst_baytrail_pcm axp288_adc snd_soc_sst_ipc snd_soc_sst_dsp snd_soc_sst_byt_rt5640_mach intel_rapl intel_soc_dts_thermal intel_powerclamp coretemp kvm_intel usbhid kvm irqbypass punit_atom_debug crc32_pclmul aesni_intel brcmfmac aes_i586 xts lrw gf128mul ablk_helper brcmutil cryptd cfg80211 bmc150_accel_spi bmc150_accel_i2c bmc150_accel_core jsa1212 kxcjk_1013 industrialio_triggered_buffer kfifo_buf snd_intel_sst_acpi industrialio snd_intel_sst_core snd_soc_rt5640 goodix snd_soc_sst_mfld_platform snd_soc_rl6231 snd_soc_core snd_compress ac97_bus snd_pcm_dmaengine snd_pcm snd_seq_midi snd_seq_midi_event snd_rawmidi mei_txe mei lpc_ich snd_seq snd_seq_device snd_timer 8250_fintek
[11622.144368] usbcore: deregistering interface driver brcmfmac
[11642.563260] usbcore: registered new interface driver brcmfmac 
Recovery mode not working https://askubuntu.com/questions/857056/recovery-mode-not-working

When I boot my computer none of the dispay options pull up and I can't even open a terminal using Ctl+Alt+T. When I try to boot it in recovery mode it the same thing happens. I don't get the normal option menu that comes in recovery mode. I was trying to upgrade to 16.04 and halfway through the upgrade my computer turned off, that's when this started happening.

xterm error : xt error can't open display xterm display is not set https://askubuntu.com/questions/778386/xterm-error-xt-error-cant-open-display-xterm-display-is-not-set

I have no idea how to set the display. I keep getting the following error error

xterm: xt error can't open display xterm display is not set

I have searched online but haven't found any solution. Please can anyone help me out ?

nmcli dev connect? https://askubuntu.com/questions/666753/nmcli-dev-connect

nmcli has an option to disconnect a device ( nmcli dev disconnect iface mydevice) but it doesn't have a connect command. How can I connect a device which was disconnected? My device is not a wifi.

 nmcli device { COMMAND | help }

 COMMAND := { status | list | disconnect | wifi }
Ubuntu recovery mode https://askubuntu.com/questions/613650/ubuntu-recovery-mode

I have dual boot with Ubuntu 14.04 and windows 8 on my computer. So recently I accidentally removed some important packages from my ubuntu and now when I try to load Ubuntu from the GRUB list, it boots up only as a terminal.

I tried to boot Ubuntu in recovery mode, but the recovery menu does not show up also. Even the recovery mode boots into a terminal shell.

Please someone help. I appreciate

Can't get the Focusrite Scarlett 2i2 working on my computer https://askubuntu.com/questions/610018/cant-get-the-focusrite-scarlett-2i2-working-on-my-computer

I recently decided to switch over to Ubuntu for experimentation. I previously had a Focusrite Scarlett 2i2 fully functioning on my Windows OS and was able to record, playback and produce sounds using FL Studio. But now, I can't get my computer to playback sound through it. I'm fairly new to Ubuntu all together and I need massive help.

So far I've gotten the computer to recognize that the Scarlett is connected and have install the drivers. Pulse Audio recognizes that the Scarlett exists but when I check the Port tab to switch it's output to the speakers, it only allows me to put it as analog output. The volume bar moves as sounds play but no sound is coming out of the speakers. The same applies for the input settings, the volume tab moves as I speak into my mic, but again no sound.

I've checked forums, Everyone seems to point towards getting Qjack for recording sounds. I've installed it and it doesn't seem to recognize any devices. Maybe there's great deal of setting up or something, I don't know.

ubuntu 14.04 recovery mode, help https://askubuntu.com/questions/572689/ubuntu-14-04-recovery-mode-help

My laptop wouldn't boot so I looked up online things I can do. I'm stuck under the GRUB area at recovery mode as I don't know which Ubuntu with Linux...... generic (recovery mode) to chose. Please help!

Disable recovery mode [duplicate] https://askubuntu.com/questions/419001/disable-recovery-mode

I'm working with Ubuntu 12.04 LTS, and in my application I turn on and turn off the system from a energy switch. My problem is the screen presentation of recovery mode. I want to disable it, because I don't have a keyboard to do the selection. Is it possible? I tried

How to disable recovery mode/single user mode?

but it didn't work.

I tried changing

GRUB_DISABLE_RECOVERY="true" 

to

GRUB_DISABLE_LINUX_RECOVERY="true"

in /etc/default/grub, without sucess too.

Installing Software in recovery mode https://askubuntu.com/questions/361990/installing-software-in-recovery-mode

For some reason I can only successfully boot into recovery mode. I want to install drivers software updates, etc. My question is. If I install these software in recovery mode will they be applies like they normally would in the normal (non-recovery)?