Variety Wallpaper Changer has stopped working and its icon has gone missing https://askubuntu.com/questions/1567694/variety-wallpaper-changer-has-stopped-working-and-its-icon-has-gone-missing

I use Ubuntu 22.04.5 LTS with Gnome 42.9. I have been using Variety Wallpaper changer for years which I always install from the Ubuntu repository. I have it set to start at startup and my backgrounds to change every 15 mins. It normally works incredibly well but last night, I noticed my wallpaper seemed to have been stuck on a certain image for a while. On further investigation, I found that the app indicator for Variety was missing.

Thinking the app had crashed, I went re-start it manually from the menus and discovered I couldn't because its icon was not in the Gnome menu. Variety Slideshow's icon is still there and it functions fine. I opened the Ubuntu repository and found that according to the ubuntu package manager, it was still installed on my system. Nonetheless, I uninstalled and re-installed.

Nothing. No change. The icon is missing from the menus even after a system reboot and the program will not run at startup. I checked. The .desktopfile is still there.

I noticed in the forum, someone was having trouble using Variety on my version of ubuntu in dark mode. I use light mode, however.

Any help would be greatly appreciated. :)

grub-reboot / efibootmgr --bootnext does not work for one-shot Windows boot in Ubuntu dual-boot — always returns to Ubuntu https://askubuntu.com/questions/1567693/grub-reboot-efibootmgr-bootnext-does-not-work-for-one-shot-windows-boot-in-u

Title: grub-reboot / efibootmgr --bootnext does not work for one-shot Windows boot in Ubuntu 26.04 dual-boot — always returns to Ubuntu

Tags: grub2, dual-boot, windows-11, uefi, efibootmgr

Body (question):

I have Ubuntu 26.04 + Windows 11 dual-boot (two NVMe drives, AMI UEFI v4.10, GRUB 2.14, Secure Boot off). I have a small script that is supposed to reboot the machine once into Windows and then come back to Ubuntu on the next power-on:

sudo efibootmgr --bootnext 0000 && sudo grub-reboot 1 && sudo reboot

No matter what I try — grub-reboot 'Windows 11', grub-reboot windows, efibootmgr --bootnext, or all of the above combined — after reboot I end up in Ubuntu again. Occasionally the machine starts looping in Windows instead. What are the possible causes and fixes?


ANSWER:

There are four independent failure modes that can combine to cause this. I debugged all of them. Here is the full breakdown.


Failure mode 1: grub-reboot by title silently fails if the menuentry has no --id

grub-reboot writes next_entry=<your argument> to /boot/grub/grubenv. At boot, GRUB matches this against the --id attribute of each menuentrynot against the display title.

If your /etc/grub.d/40_custom looks like:

menuentry 'Windows 11' {
    ...
}

then grub-reboot 'Windows 11' writes next_entry=Windows 11. GRUB finds no entry with --id "Windows 11", falls back to entry 0 (Ubuntu), and clears next_entry so the failure is invisible on the next look.

Fix: add --id windows to your custom menuentry:

menuentry 'Windows 11' --id windows {
    insmod chain
    search --no-floppy --fs-uuid --set=root 779F-7BE1
    chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}

Then use sudo grub-reboot windows. Also set GRUB_DISABLE_OS_PROBER=true in /etc/default/grub — if os-prober generates a second Windows 11 entry without --id, it breaks the match even when your custom entry is correct.


Failure mode 2: bootmgfw.efi bounces back because of a stale hiberfil.sys

After fixing the --id issue, next_entry was consumed by GRUB (variable cleared, so GRUB did chain-load bootmgfw.efi), but the machine still returned to Ubuntu.

Evidence: the BCD file on the Windows EFI partition had a newer mtime than the last Ubuntu boot → bootmgfw.efi ran, touched BCD, then bounced back to Ubuntu ~90 seconds later.

Root cause: a 26 GB hiberfil.sys (Fast Startup / hibernate image) on the Windows partition. bootmgfw.efi tried to resume the hibernated session, failed, and returned control to firmware → BootOrder[0] = Ubuntu.

Fix:

# Mounts Windows C: and removes hiberfil.sys
sudo mount -o remove_hiberfile /dev/nvme0n1p4 /mnt
sudo umount /mnt

Long-term: in Windows run powercfg /h off to disable Fast Startup.

Diagnostic: If BootCurrent after an unsuccessful boot attempt is 0000 (Windows Boot Manager), BootNext worked but Windows itself bounced. If it's 0003 (Ubuntu shim), BootNext was ignored — see failure mode 3.


Failure mode 3: AMI firmware ignores BootNext

On some AMI boards efibootmgr --bootnext 0000 writes the EFI variable correctly but firmware boots BootOrder[0] anyway. After rebooting, BootNext is gone (consumed) but BootCurrent is still 0003 (Ubuntu) — the firmware silently discarded it.

Check:

# Right after rebooting back into Ubuntu:
sudo efibootmgr | grep -E 'BootCurrent|BootNext'

BootCurrent: 0003 with no BootNext: = BootNext was consumed but not honoured. Try disabling Fast Boot in the BIOS setup. On our machine this resolved after sudo grub-install --target=x86_64-efi --efi-directory=/boot/efi (exact trigger unknown).


Failure mode 4 (the subtle one): arming BootNext AND grub-reboot simultaneously causes an infinite Windows loop

If you arm both as belt-and-suspenders:

sudo efibootmgr --bootnext 0000   # firmware one-shot
sudo grub-reboot 1                 # GRUB one-shot
sudo reboot

…when BootNext is honoured, firmware boots bootmgfw.efi directly, bypassing GRUB. GRUB never runs → next_entry=1 stays in grubenv forever.

On the next boot (and every subsequent boot), GRUB reads next_entry=1 → boots Windows → Windows shuts down → GRUB reads next_entry=1 again → Windows → loop.

This symptom ("machine keeps booting into Windows") looks totally unrelated to the original script invocation, which succeeded. Very confusing.


The working solution

Two mutually exclusive paths — only one fires per script invocation:

#!/usr/bin/env bash
set -euo pipefail

GRUBENV=/boot/grub/grubenv
GRUB_ENTRY=1
WIN_PARTGUID=c186e69d-1471-423c-9b03-877f89268d4c  # PARTUUID of Windows ESP

# PATH A: firmware BootNext — do NOT also set next_entry
win_bootnum=$(sudo efibootmgr -v \
  | grep -i 'windows boot manager' \
  | grep -i "$WIN_PARTGUID" \
  | sed -n 's/^Boot\([0-9A-Fa-f]\{4\}\).*/\1/p' \
  | head -1)

if [ -n "${win_bootnum:-}" ]; then
    sudo efibootmgr --bootnext "$win_bootnum" >/dev/null
    if sudo efibootmgr | grep -qi "^BootNext:[[:space:]]*${win_bootnum}$"; then
        echo "BootNext armed → Boot${win_bootnum}"
        sudo reboot
        exit 0
    fi
    echo "WARNING: BootNext not confirmed, falling back to GRUB" >&2
fi

# PATH B: GRUB fallback (only when BootNext unavailable/unconfirmed)
sudo grub-editenv "$GRUBENV" unset initrdfail 2>/dev/null || true
sudo grub-editenv "$GRUBENV" unset prev_entry  2>/dev/null || true
sudo grub-reboot "$GRUB_ENTRY"
echo "GRUB next_entry=${GRUB_ENTRY} armed"
sudo reboot

Plus a boot-guard systemd service that clears stale next_entry on every Ubuntu startup (in case BootNext bypassed GRUB last time) and restores BootOrder if Windows reset it:

# /usr/local/sbin/ubuntu-boot-guard.sh
#!/bin/bash
set -euo pipefail
grub-editenv /boot/grub/grubenv unset next_entry 2>/dev/null || true
current_order=$(efibootmgr 2>/dev/null | awk '/^BootOrder:/{print $2}')
if [ "${current_order%%,*}" != "0003" ]; then
    logger -t ubuntu-boot-guard "BootOrder was '$current_order', restoring"
    efibootmgr --bootorder 0003,0000,0002 >/dev/null
fi
# /etc/systemd/system/ubuntu-boot-guard.service
[Unit]
Description=Clear stale GRUB next_entry and restore Ubuntu BootOrder
After=local-fs.target
DefaultDependencies=no
[Service]
Type=oneshot
ExecStart=/usr/local/sbin/ubuntu-boot-guard.sh
RemainAfterExit=yes
[Install]
WantedBy=sysinit.target

sudo systemctl enable --now ubuntu-boot-guard.service


Quick diagnostic checklist

Symptom Cause Fix
next_entry is empty after failed boot GRUB consumed it but Windows bounced Check hiberfil.sys; check BootCurrent
next_entry still set after reboot GRUB was bypassed (BootNext worked); ghost entry Add boot-guard service
BootCurrent: 0003 after attempt BootNext ignored by firmware Disable Fast Boot in BIOS; try grub-install
BootCurrent: 0000 after attempt BootNext worked but Windows bounced Delete hiberfil.sys; run powercfg /h off in Windows
Machine keeps booting Windows forever Ghost next_entry from dual-arming sudo grub-editenv /boot/grub/grubenv unset next_entry
Ubuntu 26.04 LTS server always restart after poweroff https://askubuntu.com/questions/1567692/ubuntu-26-04-lts-server-always-restart-after-poweroff

My system always restart after I do a poweroff.

I have a Nvidia rtx gpu, msi mag motherboard with the latest bios

I tried with two kernels: 6.12.0-061200, 7.0.0-14, 7.0.0-22

What I tried

  • BIOS set to "Power Off" on AC loss
  • ErP Ready enabled
  • Wake-on-LAN disabled
  • nvidia-powerd disabled
  • GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force reboot=acpi apm=power_off nomodeset"
Laptop keeps waking up https://askubuntu.com/questions/1567688/laptop-keeps-waking-up

I see this question asked various ways, but I'm asking it anyway.

I'll close the lid on my laptop and it goes into suspend. Then it will wake up at different times. I have looked at power management. Google just tells me how to prevent suspending at all.

Please tell me how I can diagnose and eliminate this quirk. I am running the latest version of Ubuntu with KDE Plasma.

Where can I find /var/log/dist-upgrade? https://askubuntu.com/questions/1567686/where-can-i-find-var-log-dist-upgrade

When trying to upgrade from 25.10 to 26.04 LTS I get a message cannot calculate the upgrade. I am told to look in: /var/log/dist-upgrade but /log/dist-upgrade seems not to exist.

Where do I look?

Download rate drops to zero https://askubuntu.com/questions/1567681/download-rate-drops-to-zero

I installed Ubuntu 26.04 on VirtualBox (on Windows 11 25H2 (build 26200.8655)) and started to download files. It runs for a while at maximum speed, then at a certain point it immediately drops to zero. After pausing and resuming the download, the speed returns to maximum, but it drops again soon.

enter image description here

Network adapter configurations are network bridge and Intel PRO/1000 MT Desktop. I tried virt-io as well, but it showed the same issues.

Extra cursor and tiling problem https://askubuntu.com/questions/1567679/extra-cursor-and-tiling-problem

I am facing the same problem, whereas i don't use an external tablet, I have a touchscreen display, the tiling is a problem where when i shrink back the windows it automatically snaps it to the top left corner, this voids me of the ability to move the windows to my desired location. Also the extra cursor in the top left constantly bugs me. I reinstalled ubuntu from scratch and it still is right there. I use a lenovo yoga 7 with amd ryzen 7 and in built amd graphics

ubuntu OS/Kernel logging - system freeze/hung https://askubuntu.com/questions/1567677/ubuntu-os-kernel-logging-system-freeze-hung

We are encountering an issue where a server becomes completely unresponsive, with no clear indication of what caused the hang. example:

/var/log/syslog:

Jun 12 15:45:02 k-w16 weka-agent[12000]: DEBUG:  requested_actions.d:189  <17422> [REQ_ACTION] Monitoring requested action needed info for container client: has_lease=true, action=NONE, state=ACTIVE, has_requested_action_failure=false, is_inactive=false
Jun 12 20:38:14 k-w16 kernel: Linux version 5.15.0-1063-nvidia (buildd@lcy02-amd64-007) (gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #64-Ubuntu SMP Fri Aug 9 17:13:45 UTC 2024 (Ubuntu 5.15.0-1063.64-nvidia 5.15.160)
Jun 12 20:38:14 k-w16 kernel: Command line: BOOT_IMAGE=images/d-os-6.3-h10-image/vmlinuz initrd=images/d-os-6.3-h10-image/initrd  cgroup_enable=memory swapaccount=1 nouveau.blacklist=yes nouveau.modeset=0 iommu=pt namespace.unpriv_enable=1 user_namespace.enable=1 systemd.unified_cgroup_hierarchy=1 systemd.legacy_systemd_cgroup_controller intel_cpufreq.enable=1 intel_pstate=active crashkernel=8G console=tty0 ip=10.67.32.164:10.67.32.100:10.67.33.254:255.255.254.0 BOOTIF=01-58-a2-e1-76-03-98
Jun 12 20:38:14 k-w16 kernel: KERNEL supported cpus:

/var/log/kern.log

Jun 12 15:41:54 k-w16 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): cali9d766d49d92: link becomes ready
Jun 12 15:42:07 k-w16 kernel: wekafsio: [__wmp_add_recovery_inode:134]R[5:0xf8e07cea16470144] VC(i=677,d=c0:8,a=d) o=1/1w N[1249120_35832653_10112184.wav] sz=0x8802c m=100644 st[] |wekafs_file_open:366] recovery_inodes_count=4 le(0)
Jun 12 20:38:14 k-w16 kernel: Linux version 5.15.0-1063-nvidia (buildd@lcy02-amd64-007) (gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #64-Ubuntu SMP Fri Aug 9 17:13:45 UTC 2024 (Ubuntu 5.15.0-1063.64-nvidia 5.15.160)
Jun 12 20:38:14 k-w16 kernel: Command line: BOOT_IMAGE=images/d-os-6.3-h10-image/vmlinuz initrd=images/d-os-6.3-h10-image/initrd  cgroup_enable=memory swapaccount=1 nouveau.blacklist=yes nouveau.modeset=0 iommu=pt namespace.unpriv_enable=1 user_namespace.enable=1 systemd.unified_cgroup_hierarchy=1 systemd.legacy_systemd_cgroup_controller intel_cpufreq.enable=1 intel_pstate=active crashkernel=8G console=tty0 ip=10.167.32.164:10.167.32.100:10.167.33.254:255.255.254.0 BOOTIF=03-88-a2-e1-76-03-98

As shown above, there are no log entries between 15:45:02 and the subsequent boot at 20:38:14. During this period, the node was completely unresponsive and we were unable to SSH into the server, and there was no useful information visible on the console.

After the reboot, we were also unable to find any relevant messages in the system logs that would help identify the cause of the hang.

we do have following setting:

root@k-w16:~# cat /proc/sys/kernel/hung_task_panic
1
root@k-w16:~# cat /proc/sys/kernel/sysrq
0

kernel.hung_task_timeout_secs = 120

Given that kernel.hung_task_panic=1, we expected to see a hung-task stack trace or kernel panic information if tasks were blocked for longer than the configured timeout. However, no such information was captured in the logs.

i am primarily looking to understand if there additional boot/kernel settings ( sysctl) or debugging mechanisms (SysRq, NMI watchdog etc) that should be enabled to capture diagnostic information during such hangs? - just like exception handler printing stack trace before crashing out.

also, under what circumstances a system can become completely unresponsive without generating hung-task traces or panic logs?

this issue occured with 3 out of 8 servers today within a span of 1 hour.

Bricked laptop won't start https://askubuntu.com/questions/1567675/bricked-laptop-wont-start

Without any warning sign when I last cleanly shut down my laptop running Ubuntu 26.04, it simply won't start again: the screen stays off, all lights are on (power button, ESC key, Shift Lock and Num Lock) and it stays non responsive

Hitting ESC repeatedly does nothing, and I can't boot on a USB stick (Fn+F12 is unresponsive). Other known keys (Fn+F2, Fn+F8) do nothing.

Anything else to try?

Lenovo IdeaPad Slim 3 15ABR8

Trouble pairing iPhone (iOS 26.5) to Ubuntu 26.04 over USB https://askubuntu.com/questions/1567674/trouble-pairing-iphone-ios-26-5-to-ubuntu-26-04-over-usb

I have a Framework 13 laptop (AMD cpu) with Ubuntu 26.04 freshly installed and updated. I plug in my iPhone 16 Pro (iOS 26.5) via USB-C cable, and Ubuntu shows an "Untrusted Device" dialog, and the phone shows a "Trust This Computer?" dialog.

Before I can click "Trust" on the iPhone, the dialog is dismissed. After 3-4 seconds, Ubuntu overlays another "Untrusted Device" dialog, and the iPhone again flashes the "Trust This Computer?" dialog.

It keeps repeating this endlessly, and never gives me enough time to click "Trust" on the iPhone and type in the pairing code.

The USB-C cable is a known working cable from Apple, which works fine to pair/tether the phone to a MacBook. I believe I've also paired this phone and laptop on a previous install of ubuntu, but I hadn't used this laptop in a year, and did a fresh 26.04 install recently, and I'm traveling, and surprised that I can't seem to pair the two to share my phone's internet.

The workaround is to use a wireless tethering method (bluetooth or wifi), but I can't plug my phone in to charge off the laptop without it making both the phone and laptop pop up a dialog every 3-4 seconds.

I spent a couple hours this morning with Claude to see if it could help me track down the issue, and I asked it to summarize what we tried, and here's the relevant bits from that summary:

Root-cause isolation. Verbose usbmuxd logging showed a consistent per-cycle pattern: the device enumerates cleanly, usbmuxd connects, the configuration is switched (0 → 4), preflight begins, reaches "Waiting for user to trust this computer," and then ~0.6–0.8 seconds later the device drops (Device RX aborted due to error or disconnect / Removed device) and re-enumerates. The disconnect timing is fixed and regular, and occurs with nothing on the host actively tearing down the connection — usbmuxd is idle in the trust-wait state when the drop happens. This points to the USB connection being torn down below userspace, at the USB host-controller/xHCI or device level, rather than a pairing-software failure.

What we ruled out (no effect on the drop). Different USB-C ports; the Apple cable (works on macOS); stale host trust state (cleared /var/lib/lockdown, and did Reset Location & Privacy on the phone); the udev rule 39-usbmuxd.rules (masked it entirely — no change); GNOME gvfs/gvfsd-afc contention (masked the volume monitors — the gvfs storm stopped but the ~0.8s drop persisted unchanged); daemon lifecycle (ran a single persistent usbmuxd --foreground so no socket/udev respawn could interfere); and the ipheth kernel module (unloaded it with modprobe -r ipheth — the device still dropped at the same ~0.8s mark with the driver entirely absent).

When starting Ubuntu with dock plugged in, external monitors don’t work https://askubuntu.com/questions/1567673/when-starting-ubuntu-with-dock-plugged-in-external-monitors-don-t-work

When I restart my laptop if I leave the dock plugged in, then the external monitors aren’t recognized. I can unplug and replug in the dock to the laptop, and I can lock/logout then re-login, but nothing fixes the problem.

When I restart, but unplug the dock so that Ubuntu starts without the dock plugged in, I can plug in the dock at the login screen or after I'm logged in and my external monitors are recognized and work just fine.

I'm using Ubuntu 24.04.4 LTS. The laptop is a Dell pro 16 PC16250 (though this happened with my last Dell laptop also, when I was using the same Ubuntu version). The dock is a Dell Pro thunderbolt 4 SD25TB4. I'm using the display port connections from dock to monitors.

It's a minor annoyance. Is there a configuration file that I need to change, or is there a library that I need to update?

Unattended Upgrade Emails with msmtp https://askubuntu.com/questions/1567670/unattended-upgrade-emails-with-msmtp

I do not want to install a complete mail stack on my server as we have a mailserver in our network that can deliver emails already. I have a very simple and functioning msmtp setup but it seems that unattended upgrades wants specific packages that procure a program called mailx, mail and sendmail.

I have already tried to just symlink sendmail and mail to msmtp as I remember these programs to have the same command line arguments but running a dry-run with the reporting set to "always" doesn't deliver any mail.

Is there some simple way to set something up that doesn't require me to install the entire emailing stack that comes with bsd-mailx (which includes postfix) and similar packages?

Need help installing Wine https://askubuntu.com/questions/1567669/need-help-installing-wine

I can't install wine. I put in sudo dpkg --add-architecture i386 and it says error: unknown command: sudo. How do I fix this? I have checked the spelling and even tried using l386 instead as another post suggested, but nothing worked.

Ubuntu 22.04 / cron-service / disable mail globally https://askubuntu.com/questions/1567668/ubuntu-22-04-cron-service-disable-mail-globally

I would like to disable mail globally for all cron-jobs in /etc/cron.d/*

I tried the following different approaches without success:

  1. /etc/environment: Added MAILTO=""

  2. /etc/crontab: Added MAILTO=""

  3. /etc/systemd/system/crond.service.d/override.conf:

    [Service]
    Environment="MAILTO="
    

sudo systemctl daemon-reload
sudo systemctl restart cron


I would like to avoid setting MAILTO in every cron-file in /etc/cron.d/ ...

I hope you have some good ideas.

No focus, no paste in Ubuntu https://askubuntu.com/questions/1567667/no-focus-no-paste-in-ubuntu

Recently I got problems with my Ubuntu 22.04 using Gnome: I can’t paste with the mouse middle button. New windows didn’t get focus or remained hidden. I tried several suggestions from the web but to no avail. I installed 25.04 and 26.04 on the side using the same home directory. The same problems. A new user with a fresh home on any of the installations has no problems. My experiments shows that the problems are associated with the home/.config directory. My .config is, however, huge and I have difficulties finding the culprit file or files. Can anyone pls help me. Any tip is appreciated. Håkan

GNOME Panel & Activities Overview workspace thumbnails flickering issue https://askubuntu.com/questions/1567665/gnome-panel-activities-overview-workspace-thumbnails-flickering-issue

GNOME Activities Overview workspace thumbnails begin flickering after several hours of uptime on Ubuntu 26.04 LTS with GNOME Shell 50.1 running on Wayland and Intel Alder Lake-N integrated graphics (i915 driver).

System:

  • Ubuntu 26.04 (upgraded from 24.04)
  • GNOME Shell 50.1 / Mutter 50.1
  • Wayland session (no Xorg session available)
  • Intel Alder Lake-N UHD Graphics (i915 driver)
  • Three displays (all 1920×1080 @ 60Hz)

Symptoms:

  • After several hours of uptime, GNOME Activities Overview becomes visually corrupted.
  • Specifically, workspace thumbnails flicker immediately upon entering Overview (Super key or hot corner).
  • The flickering is limited to Overview workspace thumbnails and GNOME top bar. Normal desktop, application windows remain stable and unaffected.
  • Exiting Overview immediately returns the desktop to normal. Logging out and back in resolves the issue temporarily, but it returns in minutes, rebooting it returns after several hours. No GPU resets, hangs, or DRM errors appear in journalctl.

I’ve tried:

  • Kernel parameter: intel_idle.max_cstate=1 Appears to delay or partially change the symptoms, but the issue still occurs.
  • Kernel parameter: i915.enable_dc=0 Initially seemed to reduce symptoms, but the issue still returned.
  • Tested different kernels (including older kernel) No change in long-term behavior.
  • Disabled a couple of third-party GNOME extensions (still using default Ubuntu extensions).

Observations:

  • The issue does not affect application rendering or the desktop outside of Activities Overview.
  • It appears only after extended uptime (hours), not immediately after login.
  • The issue is reproducible across reboots and kernel versions.
  • No relevant errors in journalctl related to i915, DRM, or GPU resets.

Question:

Has anyone seen GNOME Activities Overview workspace thumbnail flickering or corruption on GNOME Shell 50 / Mutter 50 under Wayland, particularly on Intel integrated graphics? Are there known issues, workarounds, or logs that I should investigate further?

Laptop battery percentage stays at 80% even after powering off https://askubuntu.com/questions/1567630/laptop-battery-percentage-stays-at-80-even-after-powering-off

I have Preserve Battery Health option enabled on Ubuntu 25.10. It is limiting the battery charging capacity at around 80% level but even after shutting down the laptop and turning it on next morning, I see the battery level at 80%.

Doesn't it suppose to start at 100% and go down to %80 and stay there? Since OS have no control on the battery after shut down, it should be charged to the maximum level.

What am I missing?

Cannot retore files in a Deja Dup Archive 26.04 generated from same on 26.04 https://askubuntu.com/questions/1567582/cannot-retore-files-in-a-deja-dup-archive-26-04-generated-from-same-on-26-04

Cannot restore files in a Deja-dup v50 Archive 26.04 generated from same on 26.04.

My understanding is that you now cannot restore files directly from nautilus. However, when I attempt to restore a file, I select my archive (from Deja-dup archive selection) and it goes into nautilus. Is this right? It is a file selector of some sort, anyway, but there is no mechanism to initiate a restore. Right and left click does not reveal anything and I cannot see any more buttons

I use a 24.04 and 26.04 with a common /home. So when it was installed on 26.04 it would have inherited the 24.04 customization files if there are any. I know there is something in `~/.cache` but I couldn't identify anything relevant to this.

I have also looked in dconf editor and I couldn't find anything relevant in there.

I now assume that Deja Dup v50 is not compatible with Deja Dup (current version in 24.04) as when I logged into 24.04 it could not identify any archives at all. I did check it was pointing to the same place as in 26.04.

Questions. Can you fix the restore?

Should I keep 24.04 and 26.04 completely separate? Note: I suspect the two versions are sharing the setup data that dconf editor is pointing to which will make this a little tricky.

System Details Report
  Report details
    Date generated:                              2026-06-08 18:51:15
      Hardware Information:

      Hardware Model:                              Advent DT4102
      Memory:                                      8.0 GiB
      Processor:                                   Intel® Pentium® G2030 × 2
      Graphics:                                    Intel® HD Graphics 2500 (IVB GT1)
      Disk Capacity:                               2.0 TB
      Software Information:

      Firmware Version:                            4.6.5
      OS Name:                                     Ubuntu 26.04 LTS
      OS Build:                                    (null)
      OS Type:                                     64-bit
      GNOME Version:                               50
      Windowing System:                            Wayland
      Kernel Version:                              Linux 7.0.0-22-generic

Thanks for any help given.


Drawing tablet not working properly - pointer shows https://askubuntu.com/questions/1567564/drawing-tablet-not-working-properly-pointer-shows

I just installed Ubuntu 26.04. I am new to all this. I have tried two different tablets, and both had the same issue. When I tried it shows the pointer moving, but I can't click on icons or draw. This is for both Krita and Open Toonz. I hadedownloaded the driver for my Huion Kamvas pro 16. (I also tried my Wacom Intuos pro too). I searched and people blamed a new xwayland update, a few people said it broke it, they rolled back the update. I only have the newest edition. Is there something I can do? Or just wait until they do a new update to resolve the issue?

When I test the tablet and pen in the test area on Ubuntu desktop tablet area properties, it works, the pressure sensitive also works.

How to use VNC server in KDE Wayland? https://askubuntu.com/questions/1565787/how-to-use-vnc-server-in-kde-wayland

I used to use VNC in x11 but it does not work with Wayland.

How can I connect to my Kubuntu 26.04 (Wayland) computer from another computer in another network so that I can access its GUI, just like in VNC?

Being able to access Wayland with VNC is important because KDE's support for X.Org is going away in 1 year.

Network bridge with QEMU not working as expected https://askubuntu.com/questions/1562256/network-bridge-with-qemu-not-working-as-expected

I have Ubuntu Server 24.04 LTS installed. I have a Windows 11 Pro virtual machine built and controlled using libvirt/virsh. I setup a network bridge with Netplan.

Ubuntu is using its regular static IP (10.0.0.2), but Ubuntu is also now using the bridge (10.0.0.3), and the Windows VM is NOT using the static IP from the bridge (which was my intent). The Windows VM does get a lease from the DHCP, but it’s not 10.0.0.3. Ubuntu is also sending some of its own traffic through 10.0.0.3.

In my DHCP server it shows three devices (when the Windows VM is on): Screenshot of DHCP server

Netplan has a bridge (br0) configured: Screenshot of Netplan config

The XML config for the Windows VM is “using” br0 and breaks without it. Windows can get onto the internet and I can RDP to it from another device on the network. But only using the other IP address from DHCP (10.0.0.4): Screenshot of interface in QEMU XML config

How do I get Windows to use the 10.0.0.3 bridge exclusively and keep Ubuntu on 10.0.0.2?

Thanks for your help!

Ubuntu bridge does not receive an IP address https://askubuntu.com/questions/1541684/ubuntu-bridge-does-not-receive-an-ip-address

I am working inside an Ubuntu 24.04.2 LTS VM having two physical NICs, enp1s0 and enp6s0. I want to create a bridge with netplan that includes only one of these interfaces. I am using this netplan:

DEV2=enp6s0
cat <<EOF | sudo tee /etc/netplan/bridge.yaml
network:
  version: 2
  renderer: networkd
  ethernets:
    ${DEV2}:
      dhcp4: false
  bridges:
    br0:
      dhcp4: true
      interfaces:
        - ${DEV2}
EOF
sudo chmod og-r /etc/netplan/bridge.yaml
sudo netplan apply

However, the bridge never receives an IPv4 address from the DHCP server, as shown with ip a:

2: enp1s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 56:6f:94:0a:00:0f brd ff:ff:ff:ff:ff:ff
    inet 172.20.28.115/24 metric 100 brd 172.20.28.255 scope global dynamic enp1s0
       valid_lft 7198sec preferred_lft 7198sec
    inet6 fe80::546f:94ff:fe0a:f/64 scope link 
       valid_lft forever preferred_lft forever
3: enp6s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master br0 state UP group default qlen 1000
    link/ether 56:6f:94:0a:00:00 brd ff:ff:ff:ff:ff:ff
4: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 46:f8:7f:dc:43:0a brd ff:ff:ff:ff:ff:ff
    inet6 fe80::44f8:7fff:fedc:430a/64 scope link 
       valid_lft forever preferred_lft forever

If I try to get the IP address manually with dhcpcd --debug br0, but I only get a link-local address (169.254.107.157/16):

dhcpcd-10.0.6 starting
chrooting as dhcpcd to /usr/lib/dhcpcd
sandbox: seccomp
spawned manager process on PID 1830
spawned privileged proxy on PID 1831
spawned network proxy on PID 1832
spawned controller proxy on PID 1833
br0: spawned DHCP6 proxy fe80::44f8:7fff:fedc:430a on PID 1834
br0: executing: /usr/lib/dhcpcd/dhcpcd-run-hooks PREINIT
br0: executing: /usr/lib/dhcpcd/dhcpcd-run-hooks CARRIER
DUID 00:01:00:01:2f:47:11:66:46:f8:7f:dc:43:0a
br0: IAID 7f:dc:43:0a
br0: delaying IPv6 router solicitation for 1.0 seconds
br0: delaying IPv4 for 0.2 seconds
br0: reading lease: /var/lib/dhcpcd/br0.lease
br0: soliciting a DHCP lease
br0: sending DISCOVER (xid 0x7ac5566c), next in 4.4 seconds
br0: spawned BPF BOOTP on PID 1838
br0: soliciting an IPv6 router
br0: sending Router Solicitation
br0: sending DISCOVER (xid 0x7ac5566c), next in 7.3 seconds
br0: process BPF BOOTP already started on pid 1838
br0: sending Router Solicitation
br0: probing for an IPv4LL address
br0: spawned BPF ARP 169.254.107.157 on PID 1839
br0: probing for 169.254.107.157
br0: ARP probing 169.254.107.157 (1 of 3), next in 1.4 seconds
br0: ARP probing 169.254.107.157 (2 of 3), next in 1.1 seconds
br0: ARP probing 169.254.107.157 (3 of 3), next in 2.0 seconds
br0: sending Router Solicitation
br0: using IPv4LL address 169.254.107.157
br0: adding IP address 169.254.107.157/16 broadcast 169.254.255.255
br0: adding route to 169.254.0.0/16
br0: adding default route
br0: ARP announcing 169.254.107.157 (1 of 2), next in 2.0 seconds
br0: executing: /usr/lib/dhcpcd/dhcpcd-run-hooks IPV4LL
Dropped protocol specifier '.ipv4ll' from 'br0.ipv4ll'. Using 'br0' (ifindex=4).
forked to background

This are the logs from journalctl:

systemd-networkd[895]: br0: netdev ready
systemd-networkd[895]: enp6s0: Reconfiguring with /run/systemd/network/10-netplan-enp6s0.network.
systemd-networkd[895]: enp1s0: Reconfiguring with /run/systemd/network/10-netplan-enp1s0.network.
kernel: br0: port 1(enp6s0) entered blocking state
kernel: br0: port 1(enp6s0) entered disabled state
kernel: virtio_net virtio5 enp6s0: entered allmulticast mode
kernel: virtio_net virtio5 enp6s0: entered promiscuous mode
systemd-networkd[895]: enp1s0: DHCP lease lost
systemd-networkd[895]: enp1s0: DHCPv6 lease lost
systemd-networkd[895]: br0: Configuring with /run/systemd/network/10-netplan-br0.network.
kernel: br0: port 1(enp6s0) entered blocking state
kernel: br0: port 1(enp6s0) entered forwarding state
systemd-networkd[895]: br0: Link UP
systemd-networkd[895]: br0: Gained carrier
systemd-networkd[895]: enp1s0: Configuring with /run/systemd/network/10-netplan-enp1s0.network.
systemd-networkd[895]: enp1s0: DHCPv6 lease lost
systemd-networkd[895]: br0: Configuring with /run/systemd/network/10-netplan-br0.network.
systemd-networkd[895]: br0: DHCPv6 lease lost
systemd-networkd[895]: enp6s0: Configuring with /run/systemd/network/10-netplan-enp6s0.network.
systemd[1]: Starting netplan-ovs-cleanup.service - OpenVSwitch configuration for cleanup...
systemd[1]: netplan-ovs-cleanup.service: Deactivated successfully.
systemd[1]: Finished netplan-ovs-cleanup.service - OpenVSwitch configuration for cleanup.
sudo[2276]: pam_unix(sudo:session): session closed for user root
systemd-networkd[895]: br0: Gained IPv6LL
systemd-networkd[895]: enp1s0: DHCPv4 address 172.20.28.115/24, gateway 172.20.28.1 acquired from 172.20.28.1

Using Openvswitch, by specifying openvswitch: {} option in the netplan, makes no difference. Why does not br0 get an IPv4 address? I explored different paths, like setting the same MAC address for both the bridge and the interface, but with no success (EDIT: turned out I may have misconfigured the netplan, see my answer). I have also enabled IP forwarding and ARP proxying, but they have not changed the situation:

sudo sysctl -w net.ipv4.ip_forward=1
sudo sysctl -w net.ipv4.conf.${DEV2}.proxy_arp=1
sudo sysctl -w net.ipv4.conf.${BRIDGE}.proxy_arp=1

Does the VM need additional configurations?

Headphones plugged in, but audio comes through speakers Ubuntu 22.04 https://askubuntu.com/questions/1474826/headphones-plugged-in-but-audio-comes-through-speakers-ubuntu-22-04

I have dual-booted Ubuntu 22.04 from Windows. My headphones worked as normal on windows, but when I plug them in whilst using Linux, the sound still comes from the speakers.

I believe the headphones are indeed still being detected but the audio itself still comes from the speakers rather than through the headphones.

I have also tried using pavucontrol, but to no luck so far.

Any help would be much appreciated

Unable to update "Secure Boot dbx Configuration Update" https://askubuntu.com/questions/1437350/unable-to-update-secure-boot-dbx-configuration-update

New Ubuntu 22.10 install. GUI update shows "Secure Boot dbx Configuration Update 77-217". When update is attempted (from GUI) error is displayed "Unable to update "Secure Boot dbx Configuration Update": failed to write data to efivarfs: Error writing to file descriptor: Invalid argument"

When update attempted with "fwupdmgr update" then error is: "failed to write data to efivarfs: Error writing to file descriptor: Invalid argument"

Help please.

How can I change the name or icon of an installed application? https://askubuntu.com/questions/1417373/how-can-i-change-the-name-or-icon-of-an-installed-application

I have two MPV media players installed of different versions. One is via apt and another via flatpak. I need them both for different purposes. But they have exactly same name and icon. So, whenever I want to play a file by right clicking on it, I can't tell which one is which. Only if there was a way to differentiate then that would be awesome. I'm on Ubuntu 20.04.

How to setup WireGuard client so only traffice for specific IPs is routed over VPN https://askubuntu.com/questions/1400767/how-to-setup-wireguard-client-so-only-traffice-for-specific-ips-is-routed-over-v

I am using the Wireguard VPN client on Ubuntu 20.04 through the network-manager plug-in. The plug-in reads the configuration file I got from the sys admin, which is below (network-manager also handles the startup and shutdown of the wg client):

[Interface]
PrivateKey = removed
Address = 10.200.85.2/32
MTU = 1412
DNS = 10.200.85.1

[Peer]
PublicKey = removed
Endpoint = removed
AllowedIPs = 0.0.0.0/0

The computers I am trying to reach on the other side of the VPN are in the 10.0.15.xxx range.

This works, except that ALL traffic on my client is routed through the WireGuard VPN. I only want traffic for 10.0.15.xxx routed through the WireGuard VPN.

I have tried changing AllowedIPs to addresses containing various permutations of 10.200.85.x/x and 10.0.15.x/x, It seems that changing AllowedIPs to anything but 0.0.0.0/0 prevents anything from getting routed over the VPN, and "ip route get" shows the route for all addresses going through the primary network connection.

The WireGuard setup in Network Manager also has a "Use this connection only for resources on its network", but checking that with AllowedIps = 0.0.0.0/0 still sends all traffic over the VPN.

I found a post on here Configuring routes so that vpn is only used for local resources showing how to add some routes for a PPP VPN to accomplish what I am trying to do. It basically assigned a route for the desired remote network to the PPP adapter, and then added a route for 0.0.0.0 with a high metric. I added routes as suggested in that article to the Network Manager WireGuard setup, but everything is still routed over the WireGuard VPN. I could see that the routes were added with "route -n", but the high WireGuard metric for 0.0.0.0 didn't encourage traffic to be routed over the primary network connection.

Any suggestions on how to send only traffic for 10.x.x.x over the WireGuard VPN? Probably something simple I am missing. Thanks for any help!

EDIT: Also, it seems odd to me that when the WireGuard VPN is running, there is no route in the route table...

jhuber@t5610:~$ ip link show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s25: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 34:17:eb:ad:40:72 brd ff:ff:ff:ff:ff:ff
7: vboxnet0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff
8: vboxnet1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:01 brd ff:ff:ff:ff:ff:ff
47: APC-Wireguard: <POINTOPOINT,NOARP,UP,LOWER_UP> mtu 1412 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/none 

jhuber@t5610:~$ route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref       Use Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG    100    0        0 enp0s25
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 enp0s25
192.168.0.0     0.0.0.0         255.255.255.0   U     100    0        0 enp0s25

jhuber@t5610:~$ ip route get 1.1.1.1
1.1.1.1 dev APC-Wireguard table 51820 src 10.200.85.2 uid 1000 
cache 
Ubuntu 16.04: display manager fails to start https://askubuntu.com/questions/833466/ubuntu-16-04-display-manager-fails-to-start

Reposting the question from: https://unix.stackexchange.com/q/314129/193223

I recently upgraded from Ubuntu 14.04 to 16.04 after which the display manager stopped working.

Assuming it's due to the init systems, I tried to switch back to upstart by following the instructions given on this page:

https://wiki.ubuntu.com/SystemdForUpstartUsers

It didn't work.

newton@gravity:~$ sudo systemctl status lightdm
● lightdm.service - Light Display Manager
   Loaded: loaded (/lib/systemd/system/lightdm.service; enabled; vendor preset: enabled)
  Drop-In: /lib/systemd/system/display-manager.service.d
           └─xdiagnose.conf
   Active: inactive (dead) (Result: exit-code) since Mon 2016-10-03 19:04:26 EDT; 13min ago
     Docs: man:lightdm(1)
  Process: 3533 ExecStart=/usr/sbin/lightdm (code=exited, status=1/FAILURE)
  Process: 3528 ExecStartPre=/bin/sh -c [ "$(basename $(cat /etc/X11/default-display-manager 2>/dev/null))" = "lightdm" ] (code=exited, status=0/SUCCESS)
 Main PID: 3533 (code=exited, status=1/FAILURE)

Oct 03 19:04:26 newton systemd[1]: lightdm.service: Failed with result 'exit-code'.
Oct 03 19:04:26 newton systemd[1]: lightdm.service: Service hold-off time over, scheduling restart.
Oct 03 19:04:26 newton systemd[1]: Stopped Light Display Manager.
Oct 03 19:04:26 newton systemd[1]: lightdm.service: Start request repeated too quickly.
Oct 03 19:04:26 newton systemd[1]: Failed to start Light Display Manager.
Oct 03 19:09:02 newton systemd[1]: Stopped Light Display Manager.

journalctl shows issues with PAM kwallet.

$ sudo journalctl -e -u lightdm
...
systemd[1]: Starting Light Display Manager...
systemd[1]: Started Light Display Manager.
lightdm[26952]: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
lightdm[26952]: PAM adding faulty module: pam_kwallet.so
lightdm[26952]: PAM unable to dlopen(pam_kwallet5.so): /lib/security/pam_kwallet5.so: cannot open shared object file: No such file or directory
lightdm[26952]: PAM adding faulty module: pam_kwallet5.so
lightdm[26952]: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: lightdm.service: Unit entered failed state.
systemd[1]: lightdm.service: Triggering OnFailure= dependencies.
systemd[1]: lightdm.service: Failed with result 'exit-code'.

...

Here's the content of /var/log/lightdm/lightdm.log;

[+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log
[+0.00s] DEBUG: Starting Light Display Manager 1.18.2, UID=0 PID=26937
[+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf
[+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d
[+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d
[+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf
[+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager
[+0.00s] DEBUG: Registered seat module xlocal
[+0.00s] DEBUG: Registered seat module xremote
[+0.00s] DEBUG: Registered seat module unity
[+0.00s] DEBUG: Monitoring logind for seats
[+0.00s] DEBUG: New seat added from logind: seat0
[+0.00s] DEBUG: Seat seat0: Loading properties from config section Seat:*
[+0.00s] DEBUG: Seat seat0: Starting
[+0.00s] DEBUG: Seat seat0: Creating greeter session
[+0.00s] DEBUG: Seat seat0: Creating display server of type x
[+0.01s] DEBUG: Using VT 7
[+0.01s] DEBUG: Seat seat0: Starting local X display on VT 7
[+0.01s] DEBUG: DisplayServer x-0: Logging to /var/log/lightdm/x-0.log
[+0.01s] DEBUG: DisplayServer x-0: Writing X server authority to /var/run/lightdm/root/:0
[+0.01s] DEBUG: DisplayServer x-0: Launching X Server
[+0.01s] DEBUG: Launching process 26944: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
[+0.01s] DEBUG: DisplayServer x-0: Waiting for ready signal from X server :0
[+0.01s] DEBUG: Acquired bus name org.freedesktop.DisplayManager
[+0.01s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0
[+0.01s] DEBUG: Loading users from org.freedesktop.Accounts
[+0.01s] DEBUG: User /org/freedesktop/Accounts/User1000 added
[+0.01s] DEBUG: User /org/freedesktop/Accounts/User1007 added
[+0.01s] DEBUG: User /org/freedesktop/Accounts/User1009 added
[+0.01s] DEBUG: User /org/freedesktop/Accounts/User1006 added
[+0.01s] DEBUG: User /org/freedesktop/Accounts/User1005 added
[+0.01s] DEBUG: User /org/freedesktop/Accounts/User1002 added
[+0.02s] DEBUG: User /org/freedesktop/Accounts/User1011 added
[+0.02s] DEBUG: User /org/freedesktop/Accounts/User1008 added
[+0.02s] DEBUG: User /org/freedesktop/Accounts/User1003 added
[+0.02s] DEBUG: User /org/freedesktop/Accounts/User1001 added
[+0.02s] DEBUG: User /org/freedesktop/Accounts/User1004 added
[+0.02s] DEBUG: User /org/freedesktop/Accounts/User1010 added
[+0.23s] DEBUG: Got signal 10 from process 26944
[+0.23s] DEBUG: DisplayServer x-0: Got signal from X server :0
[+0.23s] DEBUG: DisplayServer x-0: Connecting to XServer :0
[+0.23s] DEBUG: Seat seat0: Display server ready, starting session authentication
[+0.23s] DEBUG: Session pid=26952: Started with service 'lightdm-greeter', username 'lightdm'
[+0.25s] DEBUG: Session pid=26952: Authentication complete with return value 0: Success
[+0.25s] DEBUG: Seat seat0: Session authenticated, running command
[+0.25s] DEBUG: Session pid=26952: Running command /usr/lib/lightdm/lightdm-greeter-session /usr/sbin/unity-greeter
[+0.25s] DEBUG: Creating shared data directory /var/lib/lightdm-data/lightdm
[+0.25s] DEBUG: Session pid=26952: Logging to /var/log/lightdm/seat0-greeter.log
[+0.27s] DEBUG: Activating VT 7
[+0.27s] DEBUG: Activating login1 session c17
[+0.27s] DEBUG: Seat seat0 changes active session to c17
[+0.27s] DEBUG: Session c17 is already active
[+0.37s] DEBUG: Greeter closed communication channel
[+0.37s] DEBUG: Session pid=26952: Exited with return value 0
[+0.37s] DEBUG: Seat seat0: Session stopped
[+0.37s] DEBUG: Seat seat0: Stopping; failed to start a greeter
[+0.37s] DEBUG: Seat seat0: Stopping
[+0.37s] DEBUG: Seat seat0: Stopping display server
[+0.37s] DEBUG: Sending signal 15 to process 26944
[+0.50s] DEBUG: Process 26944 exited with return value 0
[+0.50s] DEBUG: DisplayServer x-0: X server stopped
[+0.50s] DEBUG: Releasing VT 7
[+0.50s] DEBUG: DisplayServer x-0: Removing X server authority /var/run/lightdm/root/:0
[+0.50s] DEBUG: Seat seat0: Display server stopped
[+0.50s] DEBUG: Seat seat0: Stopped
[+0.50s] DEBUG: Required seat has stopped
[+0.50s] DEBUG: Stopping display manager
[+0.50s] DEBUG: Display manager stopped
[+0.50s] DEBUG: Stopping daemon
[+0.50s] DEBUG: Exiting with return value 1

Any other debugging tips that I need to try?
What is the normal reason for changing user ID? https://askubuntu.com/questions/575970/what-is-the-normal-reason-for-changing-user-id

A little discussions alike this what is a fame of Askubuntu hints me to ask for community opinion due to this is a "multipolar" theme and adequate answer written normal English at the normal user guide nonexistent and what is presumably deliberately situate the crowd.

Though obviously the answer resides extant taxon of the well meaning.
What I wait from community it is all about

Question: What is normal reason for changing user ID?

enter image description here

Drive auto mounting as read only (errors=remount-ro) https://askubuntu.com/questions/401892/drive-auto-mounting-as-read-only-errors-remount-ro

My system is auto-mounting as read only and I have no idea why.

Output of fstab:

cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda1 during installation
UUID=28db2489-f60e-456c-9efd-7a961f3e970a /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=106e4470-d734-4cec-98a6-c7859aaedf18 none            swap    sw              0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

Output of mount:

/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)

I have searched all night including: Ubuntu 12.04 SSD root frequent random read only file system

I have no idea why this is going on. I did run fsck at boot and it didn't find errors.

The disk is fine (500GB, user 38GB)

Insmod error in grub: symbol not found:grub_realidt https://askubuntu.com/questions/284898/insmod-error-in-grub-symbol-not-foundgrub-realidt

I have a dual boot PC with Windows 7 and Ubuntu. I upgraded from 12.04 to 12.10 and then to 13.04 and since then I have not been able to boot because the PC goes into grub rescue with the error "File not found".

I have tried the following steps:

set prefix=(hd0,msdos5)/usr/lib/grub/i386-pc
set root=(hd0,msdos5)
insmod linux

I get error:

symbol not found : 'grub_realidt'.

if I do insmod normal, I get error

symbol not found : 'grub_disk_dev_list'

I have two partitions containing linux file system: (hd0,msdos5) and (hd0,msdos6). They were mountpoints for / and /boot respectively.

I have searched for this error, and found some "solved" threads. But all of them are using Live USB to get in grub prompt. I don't have access to one, and was hoping to be able to solve the issue without a flash drive.

Please help... Thanks in advance.