Search results

  1. 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...
  2. 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...
  3. 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?
  4. dos2unix

    Error testing a bash script

    It looks like your if statement needs a && instead of a single &. if [ "$direction" != "TX" ] && [ "$direction" != "RX" ]; then
  5. 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...
  6. 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.
  7. 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.
  8. 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...
  9. 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...
  10. dos2unix

    In need of help for configuring DNS server in Nobara

    If you're using DHCP it's a litle harder to pick your DNS. There are ways around it.
  11. dos2unix

    Fedora on a Mac.

    Wizards just wave their wands and say "abra cadabra" and money appears.
  12. dos2unix

    Fedora on a Mac.

    It's an M2.
  13. dos2unix

    Fedora on a Mac.

    The one we used didn't have bluetooth keyboard/mouse, so I don't know how well it works.
  14. dos2unix

    Terminal Command re system and/or problem information

    It depends on the distro for me. inxi is good, but it's not installed on suse, redhat, fedora, or slackware by default. lspci comes with just about every distro. lshw is also popular.
  15. dos2unix

    Is the real world good enough?

    This really doesn't have a lot to do with Linux directly, but I didn't know where else to put it. It is related audio and video however, so maybe it goes here. My wife is something of a photographer. She has literally taken tens of thousands of pictures since we have married. Some of them...
  16. dos2unix

    Not exactly security related But!

    snap, flatpak, and appImage are all basically the same thing. I'm still not a big fan of any of them, but there have been a few times it was the only option. So, I confess, I run a few, only because I didn't have a choice. That's what scares me, if enough developers get on-board we may no...
  17. dos2unix

    Fedora on a Mac.

    https://fedoramagazine.org/fedora-asahi-remix-40-is-now-available/ I helped a friend install this today. He already had an older version on his mac, so it was a lot easier this time. I am impressed. If I had a Mac this is definitely the distro I would run. Everything works out of the box...
  18. dos2unix

    What makes you trust DuckDuckGo is OK for privacy?

    I don't know that I trust them all that much more. But I do have to say, they do a pretty good job of keeping ads from following me around. That in itself is worth something.
  19. dos2unix

    Not exactly security related But!

    There is a way this could be more secure. If systemd just gives root privileges to every process across the board, then this is a bad idea. If however, each process has its own root user in its own little 'contained environment' like podman or docker. Then that might be a good thing.
  20. dos2unix

    Linux journey from scratch

    You can do it on a VM, just make the hard drive is big enough. There will be two OS's on this VM for a while. The original Linux that you are building from, and the custom Linux that you are building. It's not really "lessons", it's just building additional packages until you get enough of an...
Top