Informatic articles

402 bookmarks
Newest
How to Create Bootable USB Drive Using dd Command
How to Create Bootable USB Drive Using dd Command
Need to write an ISO file to a bootable USB drive? The command line ‘dd’ tool can do that with minimal effort. ```sh # list devices lsblk # umount and format sudo umount /dev/sda1 sudo mkfs.vfat -F 32 /dev/sda sudo mkfs.exfat /dev/sda # create booteable usb sudo dd bs=4M if=/home/user/downloads/path.iso of=/dev/sda status=progress ```
·linuxiac.com·
How to Create Bootable USB Drive Using dd Command
How to Setup Cron Jobs in Linux
How to Setup Cron Jobs in Linux
Automating and scheduling repeated tasks on desktops and servers improves productivity and cuts down manual intervention and monitoring. Numerous such tools are available for Linux and one of the most widely used among them is “cron”. This article will explain scheduling tasks and running scripts at regular intervals using cron jobs.
·linuxhint.com·
How to Setup Cron Jobs in Linux
How to Schedule a Task in Linux?
How to Schedule a Task in Linux?
Whenever using a UNIX-based operating system, certain tasks are to be performed repeatedly. UNIX comes with its built-in task schedulers. In the case of Linux, it comes with two basic but powerful tools: Cron daemon (default task scheduler) and at (more suitable for one-time task scheduling). How to Schedule a Task in Linux are explained in this article.
·linuxhint.com·
How to Schedule a Task in Linux?
2 hidden ways to get more from your Gmail address
2 hidden ways to get more from your Gmail address
Posted by Robby Stein, Associate Product Marketing Manager I recently discovered some little-known ways to use your Gmail address that can g...
·gmail.googleblog.com·
2 hidden ways to get more from your Gmail address
Neovim configuration for beginners
Neovim configuration for beginners
If you might have thought of vim as an old, obsolete text-editor with a very high learning curve and limited functionality, you are wrong
·medium.com·
Neovim configuration for beginners
How to Exclude Files and Directories with Rsync
How to Exclude Files and Directories with Rsync
With Rsync you can mirror data, create incremental backups and copy files between systems. When copying data, you may want to exclude one or more files or directories based on their name or location. In this tutorial, we will show you how to exclude files and directories with rsync.
·linuxize.com·
How to Exclude Files and Directories with Rsync
MicrosoftDocs/Windows-commands · GitHub
MicrosoftDocs/Windows-commands · GitHub
Public content repository for Windows Server 2016 content. - windowsserverdocs/WindowsServerDocs/administration/windows-commands at 8a3e3241ba02fabb7b4f12908daf8c3c2b8c19bf · MicrosoftDocs/windowss...
·github.com·
MicrosoftDocs/Windows-commands · GitHub
Understanding Linux configuration files
Understanding Linux configuration files
This article explains configuration files on a Linux system that control user permissions, system applications, daemons, services, and other administrative tasks in a multi-user, multi-tasking environment. These tasks include managing user accounts, allocating disk quotas, managing e-mails and newsgroups, and configuring kernel parameters. This article also classifies the config files present on a Red Hat Linux system based on their usage and the services they affect.
·developer.ibm.com·
Understanding Linux configuration files
docker daemon error - Linux HandBook
docker daemon error - Linux HandBook
This detailed troubleshooting article helps you fix the permission denied error with Docker on Ubuntu and other Ubuntu-based Linux distributions.
·linuxhandbook.com·
docker daemon error - Linux HandBook