Guides 11795 Published by Philipp Esselbach 0

The article walks readers through installing Rust on Linux Mint 20 or 21, beginning with the required build tools like gcc, make, and curl. It then recommends using the official rustup installer via a simple curl command, adding the Cargo bin directory to the profile for proper PATH resolution. An alternative APT method is mentioned but noted as outdated because it delivers old Rust versions that may break modern projects. Finally, the guide shows how to create and run a minimal cargo project to verify the setup while outlining common pitfalls such as missing build tools, stale rustup, or incorrect PATH ordering.

Guides 11795 Published by Philipp Esselbach 0

This quick guide walks you through installing WP‑CLI on a Linux system so you can manage WordPress from the command line instead of using FTP or the admin dashboard. First it lists prerequisites such as sudo access, a working WordPress install, and tools like curl and git, then shows how to download the latest PHAR file directly from GitHub to avoid tampered scripts. After making the file executable and moving it to /usr/local/bin, you verify the installation with wp --info and test it against your site by running commands like wp core version in the WordPress root directory. The article also warns about using old Debian packages that leave you stuck on obsolete versions, offers an alias shortcut for convenience, and concludes by encouraging users to replace mouse‑clicks with quick CLI actions.