title: Fedora Setup Notes 001 ## Enable sshd ```bash sudo systemctl enable sshd sudo systemctl start sshd ``` ## Essential Packages ```bash sudo dnf install vim xsel xdotool ``` ## Install VLC and ffmpeg See [here at videolan](https://www.videolan.org/vlc/download-fedora.html) ```bash su - # (i.e. run the following as root, or prefix each line with sudo) dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm dnf install vlc dnf install python-vlc (optional) ``` this is also enough to allow you to ```bash dnf install --allowerasing ffmpeg ``` note that some `libav` stuff will need to be uninstalled, so you need `--allowerasing` so that `dnf` can uninstall them. ## Wayland CLI Clipboard ```bash sudo dnf install wayland-devel git clone https://github.com/bugaevc/wl-clipboard cd wl-clipboard meson setup build cd build ninja sudo meson install ```