Learn how to read and write files within a Linux kernel module.
Also find me here:
Baeldung Author
Gbenga Oyatoye
Gbenga Oyatoye, a graduate of Economics with a decade of experience as a technical analyst in a Nigerian construction company, specializes in industrial and construction economics. With 15 years as a passionate freelance writer and researcher, his recent focus has been on Data Science, and Information Systems Technology. Gbenga combines his deep industry knowledge with data-driven insights to produce high-quality, informative content on systems technology for educative and research purpose.
Here's what I've written (so far):
Baeldung on Linux
- >All
- Package Management (2)
- Filesystems (2)
- Administration (2)
- Text Processing (1)
- Service Management (1)
- Scripting (1)
- Networking (1)
- Installation (1)
When to Use $PWD Over $(pwd)
Filed under Filesystems
Learn when to use $PWD over $(pwd).
How to Unescape JSON String Using jq
Filed under Scripting, Text Processing
Learn how to unescape a JSON string using jq.
Send Line Break With curl
Filed under Networking
Learn how to send line breaks with curl.
Activating a Conda Environment in .bashrc
Filed under Administration, Installation
Learn how to activate a Conda environment in .bashrc.
Properly Disable GNOME Tracker
Filed under Service Management
Learn how to properly disable GNOME Tracker.
Locating and Uninstalling Broken Packages in Linux
Filed under Package Management
This article covers how to handle broken Linux packages, detailing methods for locating and uninstalling them using apt-get, dpkg, and rpm package managers.
Guide to Linux pwd Command With Examples
Filed under Filesystems
A quick and practical guide to the pwd command.
Guide to Linux dpkg Command With Examples
Filed under Package Management
Learn about the Linux dpkg command and understand how to use it through practical examples.
Baeldung on Ops
- >All
- Docker (1)
- DevOps (1)
Force Nginx to Send Specific Content-Type
Filed under DevOps
Learn how to force Nginx to send specific Content-Type.
Seed a MongoDB Database Using Docker Compose
Filed under Docker
Learn how to seed a MongoDB database using Docker Compose.
Baeldung on SQL
- >All
- SQL Queries (3)
- SQL Tables (2)
- SQL Joins (1)
- SQL Functions (1)
- SQL Basics (1)
- DML (1)
How to Represent Inheritance in a Database?
Filed under SQL Tables
Learn three ways of representing inheritance in a database: table-per-hierarchy, table-per-class, and table-per-concrete-class.
Deleting Rows Using LEFT JOIN in SQL
Learn how to delete rows using LEFT JOIN in SQL.
Difference Between CTE and Subquery
Filed under SQL Queries
Explore and understand, with practical examples, the differences between Common Table Expressions(CTEs) and subqueries.
How to Store Decimal Values in SQL
Filed under SQL Basics
Learn how to store decimal values in SQL.
Trimming Strings in SQL
Filed under SQL Functions
An introduction to trimming strings in MySQL, PostgreSQL, and SQL Server.
Using ALTER to Drop a Column Only if the Column Exists in SQL
Filed under SQL Tables
Learn to use ALTER to drop a column only if it exists.
Creating Temporary Tables in a SELECT Statement Without a Separate CREATE TABLE
Filed under SQL Queries
Learn how to create temporary tables directly within a SELECT statement in SQL.
How to Fetch Maximum Value for Each Group Using SQL
Filed under SQL Queries
Learn how to fetch the maximum value for each group using SQL.