Search results

  1. dos2unix

    Ubuntu 22.04.5 LTS crashes frequently

    Another thought, if you have a wireless or USB mouse, you can try turning off the touchpad in the BIOS/UEFI and see if that gets rid of the touchpad/linker library errors.
  2. dos2unix

    Ubuntu 22.04.5 LTS crashes frequently

    x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks: This message indicates that the kernel has detected a split lock, which can degrade performance. The kernel is configured to crash on kernel split locks and warn on user-space split...
  3. dos2unix

    Ubuntu 22.04.5 LTS crashes frequently

    Can you give the output of... sudo dmesg | egrep -i 'warn|error|fail'
  4. dos2unix

    Parallel Port support

    Several Linux distributions support full bidirectional IEEE1284 parallel port compatibility. Most modern Linux distributions, such as Ubuntu, Debian, and Fedora, include support for IEEE1284 parallel ports through the parport and parport_pc kernel modules. These modules provide the necessary...
  5. dos2unix

    CANT BOOT FROM MY USB

    It depends on how it was downloaded. There are many ways some downloads can modify files and filesystems. At the very least it would change the used and free space on the drive.
  6. dos2unix

    Gpu fan manual control

    You can also try this.
  7. dos2unix

    Making easy commands hard because..

    Listing directory contents: Simple: ls Convoluted: find . -maxdepth 1 -exec echo {} \; | grep -v '^\.$' Changing to the home directory: Simple: cd ~ Convoluted: cd $(echo $HOME) Creating a new directory: Simple: mkdir newdir Convoluted: install -d newdir Copying a file: Simple: cp file1...
  8. dos2unix

    Text file differences

    Here are the methods for URL encoding in Linux/Bash with the commands inside and tags: Using curl: curl -G --data-urlencode "param=value" "" Using jq: printf '%s' "string to encode" | jq -sRr @uri Using perl: perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "string to encode"...
  9. dos2unix

    Text file differences

    you can show hidden whitespace characters in vi/vim by using the :set list command. This will display special characters like tabs, spaces, and line endings. Here's how you can do it: Open your file in Vim: vim filename Enable the display of hidden characters: :set list Customize the...
  10. dos2unix

    How to increase Java runtime maximum heap memory?

    In that case, I suspect these are compiled with something like gradle or maven and the parameters would be compiled into the launcher.
  11. dos2unix

    Solved Two or more permission groups for a file?

    In Linux, a file can only have one primary group assigned to it. However, users can belong to multiple groups, which allows them to access files associated with any of those groups. To change the group ownership of a file, you can use the chgrp command. Here's the syntax: chgrp <groupname>...
  12. dos2unix

    How to increase Java runtime maximum heap memory?

    you can specify the heap size directly when running your Java application: java -Xms6G -Xmx8G -jar your-application.jar You can put this in a bash shell script or systemd service file to launch your application.
  13. dos2unix

    Text file differences

    Understanding %20 in Web URLs In a web URL, %20 represents a space character. This is part of a process called percent-encoding or URL encoding, which is used to encode special characters in URLs to ensure they are transmitted correctly over the internet. Why %20 is Needed URLs can only contain...
  14. dos2unix

    Text file differences

    Understanding Line Endings: DOS, Linux, and Apple When working with text files across different operating systems, you might encounter issues with line endings. These differences can affect how text files are displayed and processed. Let's explore the distinctions between DOS carriage returns...
  15. dos2unix

    Which distro do you prefer?

    I run about five distro's right now. Mostly redhat clones for work, and mostly Fedora for home.
  16. dos2unix

    Which virtual machine for LMDE to install Windows?

    I didn't know this was still a thing. Just downloaded it. :) Thnx.
  17. dos2unix

    Configuring CentOS 9 to block httpd from accessing any program with setuid or setgid using SELinux

    Access Control Lists (ACLs) and Security-Enhanced Linux (SELinux) are both mechanisms for managing permissions and access control on Linux systems, but they operate in different ways and serve different purposes. Access Control Lists (ACLs) Purpose: ACLs provide a more flexible permission...
  18. dos2unix

    Arch - Wayland - Nvidia - Hyprland | Troubleshooting

    Uninstalling KDE Plasma might have removed some dependencies or configurations that other applications rely on. Here are a few steps you can try to resolve this: Check for Missing Dependencies: Some applications might depend on libraries or services that were removed with KDE Plasma. You can...
  19. dos2unix

    Looking for a strong high quality PC case

    I've had good luck with Corsair ABS and Lian Li,
  20. dos2unix

    resolvd vs networkd

    From CoPilot The differences between systemd-resolved, systemd-networkd, and how NetworkManager can work with these two daemons. systemd-resolved Purpose: Handles DNS resolution and caching. It acts as a local DNS resolver, managing DNS queries and responses. Functionality: It can cache DNS...
Top