Skip to content

Package Setup

This is a general setup guide for things that don't really need setting up. More precisely, it's for things that are available as WYSIWYG packages. You just install them via your prefered package manager, and that's it.

Example

Let's take git and ffmpeg for example.

Arch Linux

pacman -S git ffmpeg

If you want to update your package mirror links, the command is "pacman -Sy". If you don't want to confirm stuff and just let it do its thing, the argument is "--noconfirm".

Debian/Ubuntu

apt-get install gif ffmpeg

If you want to update your package mirror links, the command is "apt-get update". If you don't want to confirm stuff and just let it do its thing, the argument is "-y".

Fedora/CentOS

yum install git ffmpeg

If you want to update your package mirror links, the command is "yum update". If you don't want to confirm stuff and just let it do its thing, the argument is "-y".