<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.kats-sites.net/w/index.php?action=history&amp;feed=atom&amp;title=Linux</id>
	<title>Linux - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.kats-sites.net/w/index.php?action=history&amp;feed=atom&amp;title=Linux"/>
	<link rel="alternate" type="text/html" href="https://wiki.kats-sites.net/w/index.php?title=Linux&amp;action=history"/>
	<updated>2026-08-03T09:12:04Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://wiki.kats-sites.net/w/index.php?title=Linux&amp;diff=998&amp;oldid=prev</id>
		<title>Kat: Created page with &quot;==CLI Commands==  * [https://linuxtldr.com/installing-fzf/ fzf] - allows you to perform interactive or dynamic searches via an interactive interface for effortless navigation...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.kats-sites.net/w/index.php?title=Linux&amp;diff=998&amp;oldid=prev"/>
		<updated>2026-07-23T17:20:07Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==CLI Commands==  * [https://linuxtldr.com/installing-fzf/ fzf] - allows you to perform interactive or dynamic searches via an interactive interface for effortless navigation...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==CLI Commands==&lt;br /&gt;
&lt;br /&gt;
* [https://linuxtldr.com/installing-fzf/ fzf] - allows you to perform interactive or dynamic searches via an interactive interface for effortless navigation and selection from matching options.&lt;br /&gt;
* [https://linuxtldr.com/read-command read] - take single line input from the keyboard or from the file descriptor and store it in a variable.&lt;br /&gt;
* ps ax - the /ax/ option causes &amp;#039;&amp;#039;all&amp;#039;&amp;#039; running processes to be listed, not just those in the current terminal session&lt;br /&gt;
* Arch Linux Update with &amp;lt;code&amp;gt;sudo pacman -Syu&amp;lt;/code&amp;gt; - See [https://itsfoss.com/pacman-syu/ &amp;#039;&amp;#039;It&amp;#039;s FOSS&amp;#039;&amp;#039; article] explanation.&lt;br /&gt;
&lt;br /&gt;
==Tips &amp;amp; Apps==&lt;br /&gt;
===Keep SSH Alive===&lt;br /&gt;
: Linux kills running commands when SSH session ends&lt;br /&gt;
: [https://www.tecmint.com/keep-linux-commands-running-after-logout/ How to keep commands running after logout]&lt;br /&gt;
&lt;br /&gt;
===CSV in Terminal===&lt;br /&gt;
&lt;br /&gt;
: Working with CSV files in the terminal?&lt;br /&gt;
: You can make them readable by aligning columns neatly with column:&lt;br /&gt;
:: &amp;lt;code&amp;gt;$ cat inventory.csv | column -t -s&amp;lt;/code&amp;gt;&lt;br /&gt;
: The -s, flag tells it to use commas as separators, and -t formats the output into a clean table.&lt;br /&gt;
&lt;br /&gt;
===find last changed config===&lt;br /&gt;
: Use this command to see just the config files edited within the past day. The -mtime -1 part means &amp;quot;changed within the last day.&amp;quot;&lt;br /&gt;
:: &amp;lt;code&amp;gt;find /etc -type f -mtime -1&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===grep===&lt;br /&gt;
: Use the grep command with the -R option for recursive search, combined with multiple --include options to specify file types. This lets you efficiently search for a pattern only in desired file extensions within a directory and its subdirectories.&lt;br /&gt;
:: &amp;lt;code&amp;gt;grep -R --include=*.js --include=*.ts --include=*.jsx --include=*.tsx &amp;quot;pattern&amp;quot; /path/to/dir&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===email alert of disk full===&lt;br /&gt;
: [https://linuxhandbook.com/server-disk-space-alert/ read this article from Linux Handbook] for how to set up alerts and send email from a Linux server.&lt;br /&gt;
&lt;br /&gt;
===BentoPDF===&lt;br /&gt;
: [https://github.com/alam00000/bentopdf BentoPDF] is a privacy-focused, open-source PDF editing toolkit that works entirely client-side without uploading files to any server. It can be self-hosted using static files or Docker, making it ideal for secure workflows and offline environments.&lt;br /&gt;
&lt;br /&gt;
===Gradle Build Tool===&lt;br /&gt;
: [https://gradle.org/ Gradle] is an open source build system for Java, Android, and Kotlin developers. It is installed and run using this code once a github repo of a project that includes it is cloned, and you cd into the directory: &amp;lt;code&amp;gt;./gradlew app:run&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CrossPaste===&lt;br /&gt;
: [https://github.com/CrossPaste/crosspaste-desktop CrossPaste] installed from cloned GitHub repo using Gradle. App is running, but without desktop display. It installed an older version of Gradle (8.13) which uses an older Java SDK than the one installed on my computer.  &lt;br /&gt;
: So far it is unable to be installed on my Raspberry Pi 5 due to unsatisfied dependencies, and the Android app costs $2.00, which I&amp;#039;m unwilling to pay for an app with undemonstrated benefits. So I&amp;#039;ll back-burner this one until it is more developed.&lt;br /&gt;
&lt;br /&gt;
===SSH into VirtualBox Guest===&lt;br /&gt;
: [https://linuxiac.com/how-to-ssh-into-a-virtualbox-guest-vm/ How to SSH into a VirtualBox Guest virtual machine]&lt;br /&gt;
&lt;br /&gt;
===Using Cron &amp;amp; Crontab===&lt;br /&gt;
: [https://linuxiac.com/how-to-use-cron-and-crontab-on-linux/ How to use cron and crontab on Linux]&lt;br /&gt;
&lt;br /&gt;
===Reset Lost Root Password===&lt;br /&gt;
: [https://linuxiac.com/how-to-reset-root-password-in-linux/ How to Reset Root Password in Linux]&lt;br /&gt;
&lt;br /&gt;
===System Install Date===&lt;br /&gt;
: [https://linuxiac.com/how-to-find-linux-os-installation-date/ How to Find Linux OS Installation Date]&lt;br /&gt;
&lt;br /&gt;
===Check Linux System Bios===&lt;br /&gt;
: [https://linuxiac.com/how-to-check-bios-version-on-linux/ How to Check Bios Version on Linux]&lt;br /&gt;
&lt;br /&gt;
===Home Lab Troubleshooting===&lt;br /&gt;
: [https://www.virtualizationhowto.com/2025/11/15-troubleshooting-commands-every-linux-home-lab-admin-should-know/ 15 Troubleshooting Commands]&lt;br /&gt;
&lt;br /&gt;
===Clean $PATH Display===&lt;br /&gt;
: If you have trouble reading the directories in the $PATH variable, use the tr command to translate colon (&amp;quot;:&amp;quot;) characters to newline characters (&amp;quot;n&amp;quot;) so they can be displayed in lines:&lt;br /&gt;
:: &amp;lt;code&amp;gt;$ echo $PATH | tr &amp;quot;:&amp;quot; &amp;quot;\n&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: from [https://substack.com/@thatstraw? TRÄW] on Substack&lt;br /&gt;
&lt;br /&gt;
===Docker Volumes===&lt;br /&gt;
&lt;br /&gt;
: To create a Docker volume:&lt;br /&gt;
:: &amp;lt;code&amp;gt;docker volume create [name of volume]&amp;lt;/code&amp;gt;&lt;br /&gt;
: To use a volume, to make data persistent, use these commands:&lt;br /&gt;
:: &amp;lt;code&amp;gt;docker run -it --rm --mount source=[volume name],destination=[directory] [image name]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Manjaro Quirks==&lt;br /&gt;
&lt;br /&gt;
===Package Management===&lt;br /&gt;
: Manjaro, being an Arch-derived distro, doesn&amp;#039;t use apt, but rather pacman. However, other cross-platform managers like npm or flatpak or snap also work.&lt;br /&gt;
&lt;br /&gt;
==DevOps==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Free websites to learn DevOps 👇 &lt;br /&gt;
by @govardhana_mk&lt;br /&gt;
&lt;br /&gt;
Learn Linux → linuxjourney &lt;br /&gt;
Learn Git → githowto &lt;br /&gt;
Practice Docker → play-with-docker &lt;br /&gt;
Build CI/CD → docs.github &lt;br /&gt;
Write Pulumi → pulumi. com/tutorials&lt;br /&gt;
Launch AWS → aws. amazon&lt;br /&gt;
Understand Kubernetes → kubebyexample&lt;br /&gt;
Do Labs → kodekloud. com/free-labs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Linux eMags, Blogs &amp;amp; Podcasts==&lt;br /&gt;
&lt;br /&gt;
* [http://www.distrowatch.com/ DistroWatch]&lt;br /&gt;
* [http://freesoftwaremagazine.com/ FSW] (Free SoftWare)&lt;br /&gt;
* [https://www.gamingonlinux.com/ Gaming on Linux]&lt;br /&gt;
* [https://itsfoss.com/ It&amp;#039;s FOSS]&lt;br /&gt;
* [https://linuxformat.com Linux Format] &amp;#039;&amp;#039;defunct&amp;#039;&amp;#039;&lt;br /&gt;
* [https://linuxgazette.net Linux Gazette]&lt;br /&gt;
* [https://linuxhandbook.com/ Linux Handbook]&lt;br /&gt;
* [http://www.linuxjournal.com/ Linux Journal]&lt;br /&gt;
* [https://linux-magazine.com Linux Magazine]&lt;br /&gt;
* [https://linuxnewmedia.com Linux New Media]&lt;br /&gt;
* [https://linuxunplugged.com/ Linux Unplugged] (podcast)&lt;br /&gt;
* [https://linuxtldr.com LinuxTLDR]&lt;br /&gt;
* [https://linuxtoday.com Linux Today]&lt;br /&gt;
* [https://linuxiac.com Linuxiac]&lt;br /&gt;
* [https://www.cyberciti.biz/ NixCraft]&lt;br /&gt;
* [https://www.reddit.com/r/linux/ Reddit Linux]&lt;br /&gt;
* [https://www.virtualizationhowto.com/ Virtualization How-to] - Home Lab info&lt;br /&gt;
* [https://www.tecmint.com/ TecMint] - sysadmin blog&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Apps of Interest==&lt;br /&gt;
&lt;br /&gt;
* [https://itsfoss.com/news/crossover-25-release/ Crossover 25] - for Windows games on Linux &amp;amp; Mac&lt;br /&gt;
* [https://github.com/ValveSoftware/Proton Proton] - Windows games on Steam&lt;br /&gt;
* [https://itsfoss.com/news/flipper-one-announcement/ Flipper One] Handheld Linux device&lt;br /&gt;
* [https://github.com/daniel-farina/xplorer Xplorer] - a new Web browser for Linux&lt;br /&gt;
* [https://www.jupiterbroadcasting.com/show/linux-unplugged/671/ Windows-MPC] podcast about accessing Windows from Linux/Mac&lt;br /&gt;
* [https://www.docker.com/get-started/ Get Started with Docker] from the official website&lt;br /&gt;
* [https://docs.docker.com/engine/install/linux-postinstall Docker Docs] official wiki&lt;br /&gt;
* [https://packages.debian.org/trixie/amd64/aptitude/download Debian apps] offical distro packages site&lt;br /&gt;
* [https://en.wikipedia.org/wiki/GNU_Mailman Wikipedia on GNU_Mailman]&lt;br /&gt;
* [https://ollama.com/coney_/gpt-oss_claude-sonnet4.6 Claude Sonnet 4.6 on Ollama]&lt;br /&gt;
* [https://search.brave.com/ask?q=how+to+configure+MariaDB+as+Django+database+backend+on+Debian+13%3F&amp;amp;conversation=093de7e51171190754687cc9f36f3a270789 Configure MariaDB for Django on Debian]&lt;br /&gt;
* [https://search.brave.com/ask?q=How+do+I+configure+nginx+for+Mailman+3%3F&amp;amp;conversation=093da402c2c84ceaf339f6e5addd45019cda Configure nginx for Mailman]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Applications]]&lt;br /&gt;
[[Category:FOSS]]&lt;br /&gt;
[[Category:Linux]]&lt;/div&gt;</summary>
		<author><name>Kat</name></author>
		
	</entry>
</feed>