Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

LinuxForDevices
linuxfordevices.com > tutorials > linux > find-out-all-the-open-ports-in-linux

How to Find Out all the Open Ports in Linux?

23+ hour, 50+ min ago   (1454+ words) Two states get mixed up constantly. Listening means a local process is waiting for connections on an address and port. Established means a connection is active between two endpoints. When you hunt for open ports you want the listening set,…...

LinuxForDevices
linuxfordevices.com > tutorials > linux > rename-a-directory

Rename a Directory in Linux: 3 Methods

1+ day, 3+ hour ago   (975+ words) You run ls, see old_project, and you want it to be new_project without touching the files inside. Linux has no standalone rename step for directories, so you reuse the move operation with a new name, which means a single mv call does…...

LinuxForDevices
linuxfordevices.com > tutorials > linux > run-sh-file-in-linux

How to run a.sh file and Shell Scripts in Linux?

3+ day, 13+ hour ago   (919+ words) Scripts run my automation on every Linux box I maintain, and the first launch often stops on a message that looks fatal but isn’t. The execute bit is missing, or the shell can’t find the file, or the script expects…...

LinuxForDevices
linuxfordevices.com > tutorials > shell-script > switch-case-in-shell-scripts

Shell Scripting 101: Switch Case in Shell Scripts

6+ day, 12+ hour ago   (965+ words) Long if-elif-else chains get hard to read once a script needs more than two or three outcomes. The bash case statement handles that job with one value, a list of globs, and the first matching block runs. I rebuilt the…...

LinuxForDevices
linuxfordevices.com > tutorials > ls-ltr-command-in-linux

Understanding ls -ltr command in Linux

2+ week, 4+ day ago   (779+ words) You run ls, scan a crowded directory, and still cannot tell which file changed most recently. The ls -ltr command solves that in four characters of flags: it prints full details for every entry and sorts them so the oldest…...

LinuxForDevices
linuxfordevices.com > tutorials > install-jellyfin-server-debian

Jellyfin Debian Install: Set up a Jellyfin server on Debian or Ubuntu

2+ week, 4+ day ago   (1158+ words) Before you proceed with the guide, we will need to make sure that we meet the basic requirements for a seamless streaming experience. A Raspberry Pi works well for this too. See Docker on Raspberry Pi if you would rather…...

LinuxForDevices
linuxfordevices.com > tutorials > grep-command-interview-questions

Linux grep Command Interview Questions

2+ week, 4+ day ago   (923+ words) Hiring panels ask these questions because log triage is daily work. Every command below was verified against GNU grep 3.11, so you can rehearse the exact syntax you will type on the job. Every example below runs against a small log…...

LinuxForDevices
linuxfordevices.com > tutorials > linux > solved-gzip-stdin-not-in-gzip-format

[SOLVED] gzip: stdin: not in gzip format

2+ week, 5+ day ago   (655+ words) The error gzip: stdin: not in gzip format appears when tar hands the file to gzip for decompression and gzip finds data that is not a gzip stream. The usual cause is simple: the file was never compressed, it is…...

LinuxForDevices
linuxfordevices.com > tutorials > linux > udevadm-command

Basics of udevadm command in Linux with examples

2+ week, 5+ day ago   (651+ words) When a USB drive mounts itself the moment you plug it in, or a symlink appears in /dev for your new disk, that is udev at work. The udevadm command is the control tool for that system: it shows what…...

LinuxForDevices
linuxfordevices.com > tutorials > kali-linux > install-anonsurf

How to install and use anonsurf on Kali Linux?

3+ week, 5+ day ago   (839+ words) Anonsurf is a Kali-focused script that changes system network routing through Tor with iptables. Install it only in a disposable Kali environment, inspect the installer before granting root access, and treat it as a routing tool rather than an anonymity…...