Recent content by dos2unix

  1. 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
  2. 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...
  3. 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.
  4. 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...
  5. 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?
  6. 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...
  7. 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...
  8. 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...
  9. 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?
  10. dos2unix

    Error testing a bash script

    It looks like your if statement needs a && instead of a single &. if [ "$direction" != "TX" ] && [ "$direction" != "RX" ]; then
  11. 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...
  12. 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.
  13. 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.
  14. dos2unix

    LFCS - KVM Installation

    For RPM based systems, you can install this like ... dnf install -y qemu ipxe-roms-qemu libvirt-client-qemu libvirt-daemon-driver-qemu libvirt-daemon-qemu qemu-audio-alsa qemu-audio-pipewire qemu-audio-spice qemu-block-ssh qemu-device-display-qxl qemu-device-display-virtio-gpu...
  15. dos2unix

    NST 40

    I've used this before, but it's gotten better. NST ( Network Security Toolkit ) is based on Fedora 40. Basically it's quite a few network security tools pre-packages. It's sort of like Kali, except it's more network based. It doesn't have as many Penetration tools as Kali, but has more...
Top