As long as we have the technology to make home security readily available to us, we should take advantage of it, right? It’s not as expensive as you may think, either, as you can get the Reolink PoE Security Camera at 25% off and enjoy night vision, motion detection, remote access, and more. This budget security camera is 4MP HD and allows you to capture clear and sharp images and video, appropriate for your driveway or even a hallway. It has a long-distance night-vision range of 65 to 100 feet with 18 infrared LEDs. Additionally, there’s a wide viewing angle up to 80 feet. The… Read more
The Best Antivirus Programs for Ubuntu
Let’s be real here. When it comes to virus threats, Linux is the last thing on a hacker’s mind. However, that doesn’t excuse it from all attack vectors. Though Linux benefits from “security by obscurity,” you still have to worry in some ways. For example, just because Linux can’t run Windows programs (without Wine) doesn’t mean you shouldn’t be cautious. These viruses can still be spread, especially if you have a Samba server (Windows file share on Linux) or external devices that regularly interact with both Linux and Windows. You could be inadvertently spreading viruses – not to mention some hackers have recently (though not… Read more
Grub vs. Systemd-boot: Which One Should You Use as the Bootloader
Systemd-boot, sometimes called “systemd” and previously called “gummiboot,” is Grub’s newer competitor. On compatible EFI systems, systemd-boot can be used in place of Grub to boot the system’s operating system. From a high-level perspective, systemd-boot links to the bootloader already in UEFI, offering the most basic feature set for selecting an operating system. Grub, on the other hand, loads what is sometimes described as “an entire OS” to manage booting the user’s operating system, providing far greater capability. What is a bootloader? A bootloader loads the operating system. It’s copied to memory from a special sector on the boot media and runs before any operating… Read more
Adjust and Normalize Your Music Files with FFMPEG
Not all audio files are created equal. Sometimes, they’re too quiet, too loud, or just off. When you find yourself with a problematic audio file, you aren’t stuck just dealing with it. FFmpeg, a powerful open-source audio utility can help. It can adjust the volume of your files and normalize them to get rid of unpleasant fluctuations in volume. What’s even better, it’s fully scriptable and even baked into Python scripts that streamline the whole thing. Installing FFmpeg If you don’t already have it, FFmpeg is really easy to get. Linux users can almost always find it in their distribution repositories. For Windows and Mac,… Read more
How to Install Pip in Ubuntu
Linux is absolutely rife with package managers. Not only does Ubuntu have apt, but many programming languages come with their own package managers as well. Node.js has npm, Ruby has gem, and Python has pip. Pip stands for Python Installs Packages and lets you easily install packages from the Python Package Index (PyPI). You can use it to install from other indexes as well, but much of what you’ll generally need is available on PyPI. In order to use pip to install packages, you’ll need to install it on your system first. Related: Top 5 Websites to Learn Python Online for FREE Which Version of… Read more