A loop device is a pseudo-device which doesn’t correspond to a real, physical block device, but can be used to make a file appear and be treated like one. To manage loop devices on Linux…
15 Linux sfdisk Command Examples to Manage Disk Partitions
If you are a sysadmin, managing your Linux server’s hard disk partition is a critical task. In this tutorial, we’ll focus on how to use sfdisk command-line utility to manage your hard disk partitions. While sfdisk is similar to fdisk, there are few partition manipulation activities that are very easy to perform in sfdi
Mattermost is an open-source alternative to Slack and Microsoft Teams. It allows you to self-host online chat and offers many features, such as file s...
Syncthing is an open-source, peer-to-peer file synchronization tool designed to sync files across multiple devices securely. This tutorial will show y...
News webOS Studio v2.1.0 and CLI v3.1.0 has been released! On-ramp to the Future of Smart Devices Driven by webOS Open Source Edition, the open-source software platform built for smart and connected devices of tomorrow.
Versatile Software Platform for Open Innovation Join the ride and bring your ideas to life with webOS Open Source Edition.
Learn more
Best of both worlds — web and native technologies Supports rapidly changing web technologies as well as powerful native technologies including Qt.
PDFtk is a simple tool for doing everyday things with PDF documents. It comes in three flavors: PDFtk Free, PDFtk Pro, and our original command-line tool PDFtk Server.
How to resize an image file before writing to SD card?
I've been trying to create a new Raspbian image with a different kernel (with CAN support) and with Python 3.3 installed. Rather than doing all of this on the Raspberry Pi, I thought it would be
Unzip is a command line tool that allows you to list, test, and extract compressed zip archives. In this article, we will explain how to use the unzip command to unzip files in Linux systems.
Fuzz testing is a technique for automatically uncovering bugs in software. The problem is that it’s a pain to set up. Read any fuzz testing tutorial, and the first task is an hour of building tools from source and chasing down dependencies upon dependencies.
I recently found that Nix eliminates a lot of the gruntwork from fuzz testing. I created a Nix configuration that kicks off a fuzz testing workflow with a single command.
How can I get video duration in seconds?
What I've tried:
ffmpeg -i file.flv 2>&1 | grep "Duration"
Duration: 00:39:43.08, start: 0.040000, bitrate: 386 kb/s
mediainfo file.flv | grep
Returning Values from Functions in Bash Shell Scripting
Ever found yourself puzzled over how to return a value from a Bash function? You're not alone. Many developers find this concept a bit tricky. Think of Bash