Search results

  1. dos2unix

    Sound BlasterX AE-5 Plus

    This may help. https://www.linux.org/threads/tweaking-audio-in-linux.48264/#post-215565
  2. dos2unix

    Sound BlasterX AE-5 Plus

    You are correct, I did say 6.1, my mistake. But it would be the same limitation in Windows.
  3. dos2unix

    Sound BlasterX AE-5 Plus

    This card does indeed have a front and rear output jack. If I type in pw-cli dump I see. audio.channels = 6 audio.position = FL,FR,RL,RR,FC,LFE
  4. dos2unix

    Sound BlasterX AE-5 Plus

    I don't own a set of Logitech Z906 or Logitech X620 speakers. But I have a friend who let me borrow his for some testing. I assure you, I can get 6.1 stereo/surround thru SPDIF in Linux. I am using a 6.9.x kernel, perhaps that makes a difference. Also, I can get 6.1 surround from the audio (...
  5. dos2unix

    How to handle bloat on GNU/Linux?

    You almost always need at least a few logs around. The question is, how many for how long? I use logrotate. It's the default on most of the distro's I use. My /etc/logrotate.conf file looks like this. /var/logs/*.log { missingok notifempty daily rotate 7 compress...
  6. dos2unix

    Sound BlasterX AE-5 Plus

    To each his own. Works great for me.
  7. dos2unix

    Newbie questions > Linux tablet ?

    You can check Murena https://murena.com/ It doesn't work with every tablet. But it does work with quite a few. Another option for some tablets is... https://postmarketos.org/
  8. dos2unix

    Ultramarine 40 released

    Ultramarine, like Nobara and NST is based on Fedora. https://blog.fyralabs.com/ultramarine-40-release/ https://nobaraproject.org/download-nobara/ https://www.networksecuritytoolkit.org/nst/index.html
  9. dos2unix

    Wlan0 not showing

    So, this is a VM? I missed this somewhere. The VM is isolated from your host computer. It doesn't know what kind of network adapter your computer has. It may be a Wi-Fi adapter on your host computer, but in VirtualBox, or KVM/Qemu, or VMware, it will only show up as a LAN connection on the...
  10. dos2unix

    grepping files

    You could try... grep -Rnw '/path/to/somewhere/' -e 'word1' -e 'word2' -e 'word3' You don't need the filename if you're looking at all the files.
  11. dos2unix

    Solved How much memory is too less memory? Is there even such a thing?

    [root@absTower1 ~]# vmstat 2 4 procs -----------memory---------- ---swap-- -----io---- -system-- -------cpu------- r b swpd free buff cache si so bi bo in cs us sy id wa st gu 0 0 616 2546604 335188 47312744 0 0 2 74 250 3 0 1 99 0 0 1 0 0...
  12. dos2unix

    Wlan0 not showing

    Depending on which Desktop GUI you are using, wlan0 is your RealTek adapter. Are you expecting the name to match in every environment?
  13. dos2unix

    Best Linux Distro for Writing Machine

    Is there a more frequent question that.. "what is the best distro for... ?" All distro's use the same kernel, some have slightly newer kernel versions, some have slightly older kernel versions. But it's all the same kernel. Older versions tend to be more stable. Newer versions tend to have...
  14. dos2unix

    PDF to Microsoft Word File

    If you really do have hundreds of these... #!/bin/bash # Specify the input directory containing your PDF files input_dir="/path/to/your/pdf/files" # Specify the output directory for the converted DOCX files output_dir="/path/to/output/directory" # Loop through each PDF file in the input...
  15. dos2unix

    Server Networking (?)

    To me, it sounds like all you need is name based sites. https://httpd.apache.org/docs/2.4/vhosts/name-based.html gameserver1.mysite.com gameserver2.mysite.com gameserver3.mysite.com I'm assuming you only have one public IP address. https://httpd.apache.org/docs/2.4/vhosts/examples.html You...
  16. dos2unix

    Server Networking (?)

    I've read this 3 or 4 times, and I'm still not sure what you're trying to do. You just want the same internet domain name, but depending on the URL, you want a different endpoint?
  17. dos2unix

    Error testing a bash script

    It looks like your if statement needs a && instead of a single &. if [ "$direction" != "TX" ] && [ "$direction" != "RX" ]; then
  18. dos2unix

    Microphone Adventures with Linux Mint

    That's been my experience as well, but not only for the microphone, but for the speakers. For whatever reason it seems to be more of an issue with laptops than desktop. I have some nice Bose speakers I was using on a desktop, but I bought a THX set for my desktop. So I gave my wife the Bose...
  19. dos2unix

    Microphone Adventures with Linux Mint

    https://www.newegg.com/p/pl?d=pc+microphone Newegg has them anywhere from $9.00 US to $1500.00 US. You can get a pretty good USB one for $50 or $60.
  20. dos2unix

    The unthinkable has happened: Nvidia has finally embraced open-source GPU drivers

    They may have waited too late in my opinion. I was a GeForce guy for many years, but recently switched over to Radeon and I'm not looking back.
Top