Showing all newswire headlines

View by date, instead?

« Previous ( 1 ... 942 943 944 945 946 947 948 949 950 951 952 ... 7359 ) Next »

9to5Linux Weekly Roundup: April 4th, 2021

  • 9to5Linux; By Marius Nestor (Posted by hanuca on Apr 4, 2021 10:53 PM EDT)
  • Story Type: Roundups; Groups: Linux
The twenty-seventh installment of the 9to5Linux Weekly Roundup is out, for the week ending on April 4th, keeping you guys up to date with the most important things happening in the Linux world.

KernelCare Brings Bootless Security Patching to Azure IoT Hub

Organizations deploying multiple connected devices running Linux can now keep them patched with no reboot required on the Azure IoT Hub for the cloud.

Compact DIN-railer with 10GbE runs Ubuntu on quad -A72 SoC

IEI’s fanless, rugged “DRPC-330-A7K” embedded computer runs Ubuntu on a Marvell Armada 7040 and offers 10GbE SFP+, 2x GbE, 4x isolated serial, 2x USB, and 3x M.2 connections. IEI announced a networking-oriented embedded computer called the DRPC-330-A7K that runs Ubuntu 18.10 on Marvell’s Armada 7040 (88F7040). The DIN-rail form-factor system has a -20 to 60°C […]

A practical guide to using the git stash command

  • Opensource.com; By Ramakrishna Pattnaik (Posted by bob on Apr 4, 2021 4:19 PM EDT)
  • Story Type: Tutorial; Groups: Developer
Version control is an inseparable part of software developers' daily lives. It's hard to imagine any team developing software without using a version control tool. It's equally difficult to envision any developer who hasn't worked with (or at least heard of) Git. In the 2018 Stackoverflow Developer Survey, 87.2% of the 74,298 participants use Git for version control.

Ubuntu 21.04 Beta (Hirsute Hippo) Released. Download and Test now.

Aligning to the release schedule, the Ubuntu team announced the release of the Ubuntu 21.04 Beta code-named 'Hirsute Hippo'. The beta images are immediately available for download and test.

How to Install and Configure Arch Linux with a Desktop Environment

  • LinuxStans.com; By Alex Thomson (Posted by Feenta on Apr 4, 2021 11:56 AM EDT)
  • Story Type: Tutorial; Groups: Arch
Here is my method for installing Arch Linux. This can be a bit fiddly, but is a really great learning curve, especially if you are installing it on physical hardware. There are many methods to do everything, different partitioning tools, and lots of ways to carve up your disks (if you are using a virtual machine; LVM would be beneficial as it provides that dynamic disk allocation that is useful for extending your LUNs as required, etc).

Compact Whiskey Lake system has four USB 3.2 Gen2 slots

Advantech’s rugged “UNO-238” embedded PC runs Linux or Win 10 on Intel’s 8th Gen UE-series and offers up to 32GB of easily swappable DDR4 plus 32GB eMMC, 2x GbE, 4x USB 3.2 Gen2, 2x serial, 2x M.2, and DP and HDMI. Advantech announced a fanless, Whiskey Lake based IoT edge computer called the UNO-238 that […]

Linux Foundation and OpenTreatments Foundation team up to fight rare genetic diseases

  • ZDNet | open-source RSS; By Steven J. Vaughan-Nichols (Posted by bob on Apr 4, 2021 7:33 AM EDT)
  • Story Type: News Story; Groups: Linux
Rare diseases kill millions, but because they don't make the headlines that coronavirus does, they're often ignored. Now, the Linux Foundation and the OpenTreatments Foundation are joining forces to create open-source gene therapies for rare genetic diseases.

Gdu – A Pretty Fast Disk Usage Analyzer for Linux

  • Tecmint; By Karthick Sudhakar (Posted by tecmint on Apr 4, 2021 5:21 AM EDT)
  • Story Type: Tutorial; Groups: Linux
The gdu tool is created for SSD drives where parallel processing can be utilized. This tool can also work with HDD with less performance compared to SSD drives. You can also check benchmark results. There are many other similar tools and you have to play with gdu first to see if satisfy your needs.

Fedora Council is Just a Mouthpiece and Instrument of IBM Management, It Doesn’t Speak For (What Used to Be) Fedora Project/Community

Fedora is quickly distancing itself from the notion that it’s really a community, as opposed to a pet project of IBM (which IBM barely cares about; or less and less over time)

AlmaLinux, the $1M Drop-In CentOs Replacement, Is Out and Bound for Data Centers

Its creator, CloudLinux, built the distribution at warp speed, racing to fill the void left by Red Hat's EOL announcement for CentOS.

Manjaro 21.0 Review – Well Built and Gets the Job Done

Manjaro Linux is one of those Linux distributions which is slowly evolving to reach great heights of Linux desktops. Manjaro 21.0 was released a while back and hence it's time for a Manjaro 21.0 review.

Tiny, dual-GbE Raspberry Pi CM4 carrier sells for $30

DFRobot’s $30, 66 x 55mm “Compute Module 4 IoT Router Carrier Board Mini” extends the Raspberry Pi CM4 with 2x GbE, 2x Type-C, microSD, and 26-pin GPIO. Earlier this month, we saw the first dual-Ethernet carrier boards for the Raspberry Pi Compute Module 4 in Seeed’s Dual Gigabit Ethernet Carrier Board (2x GbE) and Mcuzone […]

Creating a backup of data stored in a Linux virtual machine

Learn how one sysadmin backs up data from one virtual machine to another in a different geographic zone.

How to Install Vagrant on Ubuntu 20.04

Vagrant is an automation software used for building and managing virtual machines easily. Vagrant gives a developer a disposable consistent environment for developing and managing any scripts. In this guide you are going to learn how to install Vagrant on Ubuntu 20.04. We will use VirtualBox on which we use Vagrant to provision virtual machines.

The Free Software Foundations leadership crisis worsens

  • ZDNet; By Steven J. Vaughan-Nichols (Posted by bob on Apr 3, 2021 2:01 PM EDT)
  • Story Type: News Story; Groups: Community
RMS has been kicked off the GCC Steering Committee while FSF management team members are resigning

Setting up PyQt5 in PyCharm 2020.3.5 on Fedora 33 Server

PyQt5 is a comprehensive set of Python bindings for Qt v5. It is implemented as more than 35 extension modules and enables Python to be used as an alternative application development language to C++ on all supported platforms including iOS and Android. Following below is a brief description to enable PyCharm 2020.3.5 to execute python scripts been written with PyQT5 bindings involved.

3 reasons I use the Git cherry-pick command

  • Opensource.com (Posted by bob on Apr 3, 2021 10:00 AM EDT)
  • Story Type: News Story
Finding your way around a version control system can be tricky. It can be massively overwhelming for a newbie, but being well-versed with the terminology and the basics of a version control system like Git is one of the baby steps to start contributing to open source. Being familiar with Git can also help you out of sticky situations in your open source journey. Git is powerful and makes you feel in control—there is not a single way in which you cannot revert to a working version. read more

How to use map, reduce and filter in Python

Functional programming approach in Python can be best illustrated by built-in functions called map(), filter(), and reduce(). This python tutorial teaches you how to use map(), filter() and reduce() functions with easy-to-follow examples.

Why an Open source GitOps Model Is the Future of DevOps

DevOps brings operations and development closer together, but with GitOps that whole process can be accelerated.

« Previous ( 1 ... 942 943 944 945 946 947 948 949 950 951 952 ... 7359 ) Next »