DevStudio

Text & Code

Diff CheckerJSON BeautifierJSON DiffJWT ToolsEncoder / DecoderEncrypt / DecryptJS PlaygroundRegex TesterUUID GeneratorPassword Generator

Files

Image EditorPDF Editor & Merger

Network

Webhook TesterSSH ManagerHTTP Status CodesCIDR CalculatorDNS LookupWhat Is My IPHTTP Header & Redirect CheckerHTTP Request Builder

Databases

MySQLPostgreSQL

Communication

Email ToolTemp Mail

Utilities

Lat/Long PickerNotes & DocsColor ConverterQR Code GeneratorCron Expression Parser

Converters

Timestamp ConvertercURL ConverterJSON to CSVCSV to JSONJSON to YAMLYAML to JSONJSON to XMLXML to JSON

Formatters

XML FormatterSQL FormatterCode Minifier

Text Tools

Case ConverterWord CounterSlug Generator

Generators

CSS Box Shadow GeneratorMock JSON GeneratorDummy Data Generator

Image Tools

Image ConverterImage ResizerImage CompressorFavicon GeneratorImage to PDFSVG Resizer

Web & SEO

MIME Type LookupOpen Graph GeneratorRobots.txt Generator.htaccess GeneratorSchema Markup ValidatorText-to-HTML Ratio

Security

Bcrypt & Argon2 HasherSSL Certificate Parser

Editors

HTML CSS JS SandboxOnline Code Editor

Learn

GuidesArticles

Games

Games
Sign in

Linux Articles

All articles

What Is a Symbolic Link (Symlink) in Linux and How to Create One

A symlink is a pointer file referencing another file or directory by path. Learn how to create one with ln -s and how it differs from a hard link.

How to Set Up SSH Key Authentication on Linux

Generate an SSH key pair, copy the public key to a server, and log in without a password using ssh-keygen and ssh-copy-id.

How to Schedule Tasks With Cron on Linux

Cron runs scheduled commands at fixed times or intervals using crontab syntax. Learn the five-field schedule format and how to add a cron job.

How to Check Disk Space and Find What's Using It on Linux

Use df -h to check overall disk usage and du -sh to find which directories are taking up the most space on a Linux server.

How to Find and Kill a Process Using a Specific Port in Linux

Find which process is using a port with lsof -i or netstat, then kill it by PID — useful when 'Address already in use' blocks a server from starting.

How to Use chmod to Change File Permissions in Linux

chmod changes read, write, and execute permissions for a file's owner, group, and others. Learn the numeric (755) and symbolic (u+x) notation.