Search:

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

Page 1 of 6 1 2 3 4

Search: Search took 0.12 seconds; generated 37 minute(s) ago.

  1. 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
  2. [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.
  3. [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)
  4. [ubuntu] Re: vlc hardware decoding ubuntu 24..04

    In VLC preferences, under Input/Codecs, what option is selected for "Hardware-accelerated decoding"?
  5. 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>
  6. Replies
    1
    Views
    2

    [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.
  7. 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.
    ...
  8. 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...
  9. 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?
  10. Re: Why VLC is not installed in worldwide distributions initially

    Probably this: https://en.wikipedia.org/wiki/VLC_media_player#Legality
  11. Thread: (Deleted)

    by currentshaft
    Replies
    2
    Views
    3

    Re: How a host machine accessing internet provided by VM

    You are asking how to use a VM as the gateway/router?

    You will need to use bridged networking. The VM will need a static IP address assigned. Then enable IP forwarding in the kernel. Finally turn...
  12. Replies
    3
    Views
    4

    Re: sudo dpkg --configure -a is stuck

    First try "sudo apt-get install -f"

    If that fails "sudo dpkg --configure -D 999 -a" might give you more information

    See "dpkg -Dh" for more debug options
  13. [SOLVED] Re: Which ports to involve with firewall?

    Attackers already don't have access to internal networks due to NAT: that IS the security defense against outside threats. No one can reach your computer from the Internet unless you enable port...
  14. [SOLVED] Re: Which ports to involve with firewall?

    With all due respect, a traditional firewall as you've described is effectively 100% security theater which is not going to prevent Real Bad Things(tm) from happening.

    Local malware will just use...
  15. Replies
    5
    Views
    6

    [gnome] Re: Gnome ticks (Dock & Files icons)

    This works, except there are now three sections of icons on the left-side Files menu:

    Starred, Home, Trash
    The directories I want
    Other Locations

    Still an improvement in usability, so thank...
  16. Re: Hardware vulnerabilities and the Kernel

    It depends on your threat model (i.e., what you have to lose) and age of the hardware.

    There are processors, devices and firmware so old that simply visiting a page (not even executing Javascript)...
  17. Replies
    4
    Views
    5

    [SOLVED] Re: netowork vanished ubuntu clone.

    I would populate a basic /etc/network/interfaces and reboot, you should get an interface name from "lshw".
  18. [kubuntu] Re: I have strange issue when copy some piece of code in konsole ...

    No, check your local rc file, like this:

    cat -vte ~/.bashrc

    You can also try running "set -x" in your shell to enable debug output.
  19. [server] Re: security question, why the server was reboot ls -al /sys/fs/pstore

    Try using the "last" command and checking for reboot commands in /var/log/auth.log
  20. Re: Energy profile makes Netflix hickup.

    Are you watching 4K content? That takes a lot of compute to decode, process and render. What is your screen resolution? How many cores are in use when at Netflix load (check with "uptime" or "top"...
  21. [SOLVED] Re: Which ports to involve with firewall?

    It is true. The burden is on you to provide objective evidence to the contrary. A vague first-hand recollection of some 5 year old "articles" does not suffice for the same. The lack of "hardy any...
  22. [kubuntu] Re: I have strange issue when copy some piece of code in konsole ...

    Check your shell rc file (.bashrc, .zshrc), especially for "PS1" - you might have some control characters in there.

    Does it happen after running "reset"? In other terminal emulator programs?
  23. Replies
    17
    Views
    18

    [ubuntu] Re: No Such File

    Any way you could try the device with another USB cable or computer?
  24. [ubuntu] Re: Command line converting all .wav files as a big .mp3 file

    Congratulations. Please mark the thread as solved, go forth and combine to your heart's content!
  25. [ubuntu] Re: Random system lockups and screen freezes, hardware detection mishaps

    For the frozen screen issue, you can try using Control+Alt+F1 through F7 to log in at a non-graphical console, check logs (I'd start with "sudo dmesg" and "/var/log/syslog"), and also kill stuck X...
Results 1 to 25 of 139
Page 1 of 6 1 2 3 4