Search:

Type: Posts; User: currentshaft; Keyword(s):

Page 1 of 7 1 2 3 4

Search: Search took 0.10 seconds.

  1. Re: Headphones conect and disconect after, ubuntu 24.04

    If this happens on Ethernet, I'm not sure what else it could be.

    Check out this thread, a user is reporting similar issues: https://ubuntuforums.org/showthread.php?t=2498113
  2. Replies
    1
    Views
    2

    Re: Sending mail with ssmtp

    Have you checked for ssmtp logs under /var/log to see any errors or indicators?
  3. [ubuntu] Re: Unable to install Ubuntu 24.04 LTS on clean system

    To me it sounds like Secure Boot. I've always had to turn it off to install Ubuntu, but on 24 LTS and recent hardware I had similar issues until it was enabled AND "third-party" CAs were trusted.
  4. Replies
    1
    Views
    2

    Re: DaVinci Resolve on AMD GPU

    It would be helpful to know what you've tried, how it failed, and what specifically you need help with.

    I've never had to install any driver for my AMD cards on Ubuntu, they always just work out...
  5. Replies
    2
    Views
    3

    [ubuntu] Re: Can't launch XAMPP application

    How do you get an error message in Terminal from clicking on something else? Are you running a command? Which instructions have you found and followed to set up XAMPP? It appears to be missing...
  6. Replies
    5
    Views
    6

    Re: Installing extension fails

    Terminals (or more accutely, UNIX shells) use something called IFS to interpret commands, you can check what it's set to:

    $ echo $IFS | hexdump -C
    00000000 20 09 0a 00 0a ...
  7. [SOLVED] Re: recursive rename of many files in many directories?

    There's plenty of solutions, perhaps you could share ones you'd tried and what failed, or just try something like this (obviously, at your own risk):

    find /path/to/parent/directory -type f -iname...
  8. Re: 50%+ battery drain while in suspend

    Anyone? This seems like a software problem, because I replaced the Z13 with a P14s Gen 4 and have the same exact problem:

    Brand new ThinkPad P14s Gen 4, fresh install of Ubuntu 24 LTS. Laptop...
  9. Replies
    10
    Views
    11

    [ubuntu] Re: Apache server localhost not working?

    This is why I advised against uninstalling apache.

    Try running "sudo apt-get install -f" to fix broken packages.
  10. Replies
    1
    Views
    2

    Re: bond0 is missing ARP responses

    To me it sounds like either a race condition in some bootstrap script OR a duplicate MAC/IP assigned on the network. Are you able to check those out or share any relevant bits?
  11. [lubuntu] Re: old lubuntu not accesible with usb

    The solution to your problem is most likely:

    sudo mount -o uid=1000 /dev/device /mnt

    or simply

    sudo chown -R $USER /mnt

    To properly mount the USB drives.
  12. Re: Ubuntu not recognizing Headphones as audio device

    Do you see any thing in "sudo dmesg -wHT" output while you attempt to connect them?
  13. [ubuntu] Re: When I shut down the X service, I cannot disable the system's automatic sleep mod

    You could try disabling or uninstalling lightdm, but that's at your own risk. Perhaps someone else can chime in with a CLI way to disable screensavers.
  14. Re: Adding USB Boot option to Grub entries

    If all else fails, usually a CMOS reset will get your BIOS back to factory settings, removing any passwords.
  15. [ubuntu] Re: When I shut down the X service, I cannot disable the system's automatic sleep mod

    It would help to know what are the methods you'd already tried.

    How about running "gnome-control-center" from the terminal and checking the Power section?
  16. Re: BASH read directory contents into an array and execute command

    Don't use ls to populate variable names, use find.

    for element in $(find /home/linuxuser/pkgs -type f -name "*.deb") ; do sudo dpkg -i "$element" ; done
  17. Replies
    10
    Views
    11

    [ubuntu] Re: Apache server localhost not working?

    Doubtful that will do anything if it's successfully running as you say.

    Try checking your browser proxy settings or taking a packet capture to see where packets are possiby being dropped.
  18. Replies
    10
    Views
    11

    [ubuntu] Re: Apache server localhost not working?

    Well, is apache running? (ps -ef | grep apache)

    Does localhost resolve to 127.0.0.1? (dig a localhost +short)
  19. [ubuntu] Re: vlc hardware decoding ubuntu 24..04

    In VLC preferences, under Input/Codecs, what option is selected for "Hardware-accelerated decoding"?
  20. Re: Extract initrd file and repacking it in Lubuntu 22.04 (Jammy)

    The sizes could be due to different compression algorithms being used. Check /etc/initramfs-tools/initramfs.conf then:

    mkinitramfs -o /boot/initrd.img-<kernel-version> <kernel-version>
  21. Replies
    7
    Views
    8

    [ubuntu] Re: Suggestion For ALARM CLOCK?

    This one looks actively maintained and feature-full: https://alarm-clock-applet.github.io/#features

    Looks like it's in apt to install directly for you to try.
  22. Re: How to Share local Internet Using a Proxy client?

    You could use the http_proxy/https_proxy environment variable to point at your proxy server (provided it is web traffic), or use iptables to redirect packets to a destination transparently.
    ...
  23. Replies
    1
    Views
    2

    Re: Boot problem on Asus Expert Book

    At the grub selection screen, press "e" to edit the normal boot entry, then use the arrow keys to remove "quiet splash" from the kernel parameters, then press Control-X to boot. Let us know if you...
  24. Re: 24.04 - CPU throttling after running on battery

    When you say the CPU is at 100%, can you run top/htop and see what process is taking up resources?
  25. Re: Why VLC is not installed in worldwide distributions initially

    Probably this: https://en.wikipedia.org/wiki/VLC_media_player#Legality
Results 1 to 25 of 154
Page 1 of 7 1 2 3 4