RSS Parrot

BETA

🦜 LinuxCapable

@linuxcapable.com@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Practical Linux guides for installs, configuration, and fixes

Your feed and you don't want it here? Just e-mail the birb.

Site URL: linuxcapable.com/

Feed URL: linuxcapable.com/feed

Posts: 28

Followers: 1

traceroute Command in Linux With Examples

Published: June 9, 2026 02:02

Network latency is easier to troubleshoot when you can see where packets stop answering instead of only knowing that a site feels slow. The traceroute command in Linux maps the hop-by-hop path toward a host, which helps separate local gateway problems, ISP…

tee Command in Linux: Save Output to File and Screen

Published: June 9, 2026 01:55

Pipeline output is easy to lose when you redirect it too early. The tee command in Linux keeps a copy visible on the terminal while saving the same stream to a file, another file, or the next command in the pipeline. Use tee for repeatable command logs,…

tcpdump Command in Linux: Capture and Filter Packets

Published: June 9, 2026 01:27

Packet captures answer questions that logs and port scans cannot: did the packet leave, did a reply come back, which interface saw it, and what did the protocol header contain? The tcpdump command in Linux keeps that investigation in the terminal, as long…

tar Command in Linux with Examples

Published: June 9, 2026 01:14

Archive mistakes are noisy at best and destructive at worst: one tar command can list a bundle, create a backup, or overwrite files into the current directory. The tar command in Linux becomes much safer when you separate the operation mode from the…

systemctl Command in Linux With Examples

Published: June 8, 2026 08:55

Service management gets risky when runtime state, boot enablement, logs, and unit files are treated as the same thing. The systemctl command in Linux separates those layers, so you can check whether a service is running now, decide whether it starts at…

sleep Command in Linux With Examples

Published: June 7, 2026 02:50

Fixed delays are useful when a script needs deliberate pacing, not when it needs to know whether work has finished. The sleep command in Linux pauses the current command chain for a specific interval, which makes it useful for retry loops, rate limits,…

scp Command in Linux with Examples

Published: June 6, 2026 08:14

File transfers over SSH get confusing when the login works but the source and destination sides are easy to mix up. The scp command in Linux copies files through the same SSH authentication path as ssh, making it useful for quick uploads, downloads,…

rsync Command in Linux with Examples

Published: June 6, 2026 07:18

Repeated file copies get messy when only a few files change, a transfer is interrupted, or a destination should mirror the source exactly. The rsync command in Linux handles local directory syncs, SSH-based transfers, exclusions, dry runs, deletes, and…

rm Command in Linux with Examples

Published: June 6, 2026 06:40

Deleting from a terminal is fast, but it also bypasses the desktop trash workflow that protects many graphical file managers. The rm command in Linux removes directory entries directly, so the safest habit is to preview targets, understand which options…

pwd Command in Linux with Examples

Published: June 6, 2026 05:51

Directory-sensitive commands become risky when you assume the shell is somewhere it is not. The pwd command in Linux prints the current working directory, making it a useful checkpoint before editing files, running cleanup commands, building relative…

ps Command in Linux With Examples

Published: June 6, 2026 05:05

Process problems are easier to handle when you can freeze the current state before restarting a service or killing a PID. The ps command in Linux reports a snapshot of running processes, so you can inspect ownership, parent-child relationships, CPU and…

nmcli Command in Linux With Examples

Published: June 6, 2026 04:53

Network fixes get risky when interface state, saved profiles, DNS, routes, and Wi-Fi settings are treated as one layer. The nmcli command in Linux gives NetworkManager a terminal interface, so you can inspect active devices, edit persistent connection…

ls Command in Linux With Examples

Published: June 6, 2026 04:45

Directory listings become more useful once you know which question ls is answering: names, hidden entries, long-format metadata, sort order, or the contents of a directory path. The ls command in Linux lists file and directory information without changing…

less Command in Linux with Examples

Published: June 6, 2026 04:13

Large log files and noisy command output are easier to inspect when the terminal becomes a pager instead of a flood. The less command in Linux opens files, streams, and command output in a read-only view where you can search, jump, follow new lines, and…

kill Command in Linux With Examples

Published: June 6, 2026 04:03

A stuck process is easier to handle when you send the right signal instead of reaching straight for a force kill. The kill command in Linux sends signals to process IDs, process groups, or shell jobs, with SIGTERM as the default so a program gets a chance…

journalctl Command in Linux With Examples

Published: June 6, 2026 03:51

Service failures are easier to diagnose when you can query the systemd journal by boot, unit, priority, time window, and message text instead of opening several log files by hand. The journalctl command in Linux reads that journal directly, which makes it…

gzip Command in Linux with Examples

Published: June 6, 2026 03:44

Compressed logs, transfer bundles, and database dumps are easier to move when the compression step does not destroy the only readable copy. The gzip command in Linux works on single files and streams, so the important decision is whether to replace the…

find Command in Linux with Examples

Published: June 6, 2026 03:37

Large Linux filesystems rarely fail because files are impossible to locate; they fail because the search is too broad, too noisy, or too risky to act on. The find command in Linux gives you a controlled way to match paths by name, type, size, timestamps,…

gunzip Command in Linux With Examples

Published: June 6, 2026 03:30

Restoring a gzip-compressed log, dump, or downloaded file is easy to rush because gunzip removes the .gz input after a successful decompression. The gunzip command in Linux is safer when you know when to keep the compressed copy, when to stream the…

fdisk Command in Linux With Examples

Published: June 5, 2026 06:26

Partition-table mistakes are expensive because they can make a disk unbootable, hide data, or point formatting tools at the wrong device. The fdisk command in Linux edits GPT and MBR partition tables, but the safest way to learn it is on a disposable disk…

export Command in Linux with Examples

Published: June 5, 2026 06:17

Most export mistakes happen at process boundaries: a value works in your terminal but disappears in a child script, sudo command, cron job, or new shell. The export command in Linux marks shell variables for child processes, which is why it appears in…

echo Command in Linux With Examples

Published: June 5, 2026 06:05

Short status messages, prompts, and quick pipeline input usually start with the echo command in Linux because it is available in every normal shell session. The catch is that echo is simple only when the data is simple: shell expansion, escape handling,…

df Command in Linux With Examples

Published: June 5, 2026 05:57

Disk-full alerts are easier to handle when you can separate filesystem capacity from directory growth. The df command in Linux reports used space, available space, mount points, filesystem types, and inode usage for mounted filesystems, making it the first…

chown Command in Linux with Examples

Published: June 5, 2026 05:47

Ownership problems can make a file look correctly permissioned while the wrong account still controls it. The chown command in Linux changes the user and group attached to files and directories, which is the fix when files were created with sudo, unpacked…

Check Java Version in Linux: Runtime, JDK, and JAVA_HOME

Published: June 5, 2026 05:23

Java version checks matter when a JAR refuses to start, a build tool selects the wrong compiler, or a server has several JVMs installed. To check Java version in Linux, start with java -version, then confirm the compiler, active path, and JAVA_HOME only…

cat Command in Linux With Examples

Published: June 5, 2026 05:07

Small text files are fastest to inspect when you can read them without opening an editor, but cat is more than a quick viewer. The cat command in Linux prints files to standard output, joins multiple inputs in order, and feeds file content into redirection…

bzdiff Command in Linux with Examples

Published: June 5, 2026 05:00

Comparing old log snapshots or configuration exports gets awkward when the files are still compressed with bzip2. The bzdiff command in Linux compares the decompressed content of .bz2 files without making you unpack them by hand, so you can keep archived…

awk Command in Linux With Examples

Published: June 5, 2026 04:46

Delimited text becomes easier to work with when each column, line range, or repeated value can be tested directly. The awk command in Linux reads input record by record, splits each record into fields, and runs compact pattern/action programs for filtering…