Showing headlines posted by bob

« Previous ( 1 ... 113 114 115 116 117 118 119 120 121 122 123 ... 1156 ) Next »

SolidRun & NXP launch World’s Smallest 16-Core System on Module

  • LinuxGizmos.com; By Giorgio Mendoza (Posted by bob on Apr 10, 2022 4:45 PM EDT)
  • Story Type: News Story
This past week, SolidRun released their newest LX2-Lite SoM based on the NXP’s Layerscape LX216A System on Chip as well as the CLEARFOG LX2-Lite off-the-shelf Development board. SolidRun claims that their LX2-Lite Mini SoM is the smallest 16-core SoM platform in the world due to 58x40mm ultra-compact footprint.

Explaining Git branches with a LEGO analogy

  • Opensource.com; By Seth Kenlon (Posted by bob on Apr 10, 2022 12:50 AM EDT)
  • Story Type: Tutorial; Groups: Developer
Creating a new branch in a code repository is a pretty common task when working with Git. It's one of the primary mechanisms for keeping unrelated changes separate from one another. It's also very often the main designator for what gets merged into the main branch...

Alfa Network long range-low power Wifi HaloW AHPI7292S RPI HAT

  • LinuxGizmos.com; By Giorgio Mendoza (Posted by bob on Apr 9, 2022 10:39 PM EDT)
  • Story Type: News Story; Groups: Raspberry Pi
The AHPI72992S by Alfa Network is a Raspberry Pi HAT that guarantees long distance wireless communication for low power due to its WiFi HaLow(IEEE 802.11ah) standard protocol. The expansion board is built around the NRC7292 SoC that is IEEE 802.11ah compliant and Qorvo’s RFFM6901 single chip front end module (FEM). Due to its design, the […]

Raspberry Pi OS update beefs up security

Default user gone, Bluetooth pairing during setup, and latest LTS Linux kernel. An update to the Debian Bullseye-based Raspberry Pi OS is being rolled out with both quality-of-life improvements and one very important tweak: an overdue departure of the default user.…

How to Install Webmin with free Let's Encrypt SSL on Rocky Linux 8

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Apr 9, 2022 3:15 AM EDT)
  • Story Type: Tutorial; Groups: Linux
Webmin is a free, open-source, and web-based Linux administration and management tool that allows you to configure the Linux system via a web browser. In this tutorial, I will show you how to install Webmin with Nginx and Let's Encrypt SSL on Rocky Linux 8.

Peek inside your Git repo with rev-parse

  • Opensource.com; By Seth Kenlon (Posted by bob on Apr 8, 2022 11:32 PM EDT)
  • Story Type: Tutorial; Groups: Developer
If you write a lot of Git hooks or use Git heavily in scripts, rev-parse may be the subcommand you always wanted without knowing you wanted it.

How to Install Memcached on Alma Linux 8

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Apr 8, 2022 10:17 PM EDT)
  • Story Type: Tutorial; Groups: Linux
Memcached stands for "memory object caching systems", is an open-source and high-performance distributed memory caching system used to speed up dynamic database-driven web applications. In this tutorial, I will show you how to install Memcached on Alma Linux 8.

Samba as AD and Domain Controller

  • Fedora Magazine; By Daniel Kühl (Posted by bob on Apr 8, 2022 9:03 PM EDT)
  • Story Type: Tutorial; Groups: Fedora
Using Samba for Active Directory services and as a Domain Controller will let you keep your users and groups in one easy-to-manage place.

My guide to using the Git push command safely

  • Opensource.com; By Noaa Barki (Posted by bob on Apr 8, 2022 7:49 PM EDT)
  • Story Type: Tutorial; Groups: Developer
Understand the usage and impact of this popular Git command on your project, learn new safer alternatives, and grasp the skills of restoring a broken branch.

Happy anniversary, Git! Here are our favorite Git commands

Git's 17th anniversary is on April 7th, 2022. Since its creation, Git has become a standard tool for software development. It helps programmers track changes they make to their code, and as a code hosting platform, it allows users to find useful applications. If you interact with source code, open source or otherwise, there's a strong likelihood you interact with Git. With so many people using Git daily, I wondered what the open source community's favorite Git commands are. What better way to find out than to ask?

How to Install GlusterFS on Rocky Linux

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Apr 8, 2022 5:20 PM EDT)
  • Story Type: Tutorial; Groups: Linux
GlusterFS or Gluster File System is a free and open-source distributed file system developed by RedHat. GlusterFS is a scalable file system formed from several servers into one entity file system that allows users to connect and mount the GlusterFS volume.

Hardkernel's newest ODROID-M1 enters the SBC market

  • LinuxGizmos.com; By Giorgio Mendoza (Posted by bob on Apr 8, 2022 4:06 PM EDT)
  • Story Type: News Story; Groups: ARM
The Korean-based company Hardkernel announced the launch of their newest ODROID-M1 single board computer which adopts the Rockchip RK3568 as its System on Chip. The SoC integrates four ARM cortex-A55 processors (up to 2 GHz), a Mali-G52 MP2 GPU and a 0.8 TOPs AI accelerator RKNN NPU. Although slower than its predecessors (i.e. ODROID H2), […]

How to Configure Path-Based routing in an AWS Application Load Balancer

  • Howtoforge Linux Howtos und Tutorials (Posted by bob on Apr 8, 2022 1:37 PM EDT)
  • Story Type: Tutorial; Groups: Linux
In AWS, ELB and Elastic Load Balancing exists a concept where the servers can be added or released as per the demand of our application and the incoming traffic from an application is distributed among multiple targets. In this tutorial, we will configure path-based routing for an Application Load Balancer on AWS. We are going to use an IAM user account for this task.

Rocky Linux arrives on Google Cloud

The CentOS Linux clones, such as Rocky Linux, are making their presence known on the major public clouds.

Hacking the Linux Kernel in Ada – Part 1

For this three part series, we implemented a ‘pedal to the metal’ GPIO driven, flashing of a LED, in the context of a Linux kernel module for the NVIDIA Jetson Nano development board (kernel-based v4.9.294, arm64) in my favorite programming language … Ada! Part 1. Review of a kernel module, build strategy, and Ada integration. […]

Looking Ahead: The CNF Certification Program

Here at The Linux Foundation’s blog, we share content from our projects, such as this article by Joel Hans from the Cloud Native Computing Foundation’s blog.  The telecommunications industry is the backbone of today’s increasingly-digital economies, but it faces a difficult new challenge in evolving to meet modern infrastructure practices. How did telecommunications get itself […]

A glossary of terms about cyberattacks, from ransomware to DDoS

  • The Mozilla Blog; By Kristina Bravo (Posted by bob on Apr 7, 2022 5:36 AM EDT)
  • Story Type: Editorial; Groups: Mozilla
If you read news about technology, you’re bound to run into some jargon. Here at Mozilla, we believe that information should be as accessible as possible regardless of your level of expertise. We want to help you approach stories about technology with more curiosity and with a little less head-scratching involved. We’ll break down headline-making […]

Make your own Git subcommands

  • Opensource.com; By Seth Kenlon (Posted by bob on Apr 7, 2022 4:22 AM EDT)
  • Story Type: Tutorial; Groups: Developer
Git is pretty famous for having lots of subcommands, like clone, init, add, mv, restore, bisect, blame, show, rebase, and many more. In a previous article, I wrote about the very useful rev-parse subcommand for Git. Even with all of these subcommands available, users still come up with functions to improve their Git experience. While you're free to create Git-related commands and run them as scripts, it's easy to make your own custom Git subcommands. You can even integrate them with Git through rev-parse.

INNOTECH reveals the AX-1020 Atom x6000E Elkhart Lake SBC 

  • LinuxGizmos.com; By Giorgio Mendoza (Posted by bob on Apr 7, 2022 1:53 AM EDT)
  • Story Type: News Story; Groups: Intel
Recently,  INNOTECH announced the introduction of their AX-1020 which integrates Intel’s Atom x6000E Elkhart Lake high performance SoCs. This SBC provides high performance and flexibility due to its support of different Elkhart Lake Series SoCs. The AX-1020 might be integrated with the Atom x6245E (2GHz, 12W TDP), the Atom x6413E(1.5GHz, 9W TDP) or the Atom […]

10 Git tips we can't live without

Git tips are a dime a dozen, and it's a good thing because you can never get enough of them. If you use Git every day, then every tip, trick, and shortcut you can find is potentially time and effort saved. I asked Opensource.com community members for their favorite Git hacks. Here they are!

« Previous ( 1 ... 113 114 115 116 117 118 119 120 121 122 123 ... 1156 ) Next »