I am trying to install some packages, and here are the instructions I am following:
1. Install the Required Codecs
Open a terminal and run:
sudo pacman -S ffmpeg libdvdcss
ffmpeg: Contains the core MPEG-1/2 decoders.libdvdcss: Needed for encrypted DVDs and some MPEG streams.
2. Ensure Non-Free Repositories Are Enabled
Manjaro separates free and non-free packages. Ensure your pacman.conf has the non-free repository enabled.
- Edit the config:
sudo nano /etc/pacman.conf
- Uncomment (remove
#) these lines:
[non-free]
Include = /etc/pacman.d/mirrorlist
- Update the database:
sudo pacman -Sy
When I run this last command, I get this:
:: Synchronizing package databases...
core is up to date
extra is up to date
multilib is up to date
non-free.db failed to download
error: failed retrieving file 'non-free.db' from ftp.rz.tu-bs.de : The requested URL returned error: 404
error: failed retrieving file 'non-free.db' from mirrors.up.pt : The requested URL returned error: 404
error: failed retrieving file 'non-free.db' from mirror.vinehost.net : The requested URL returned error: 404
error: failed retrieving file 'non-free.db' from ftp.caliu.cat : The requested URL returned error: 404
error: failed retrieving file 'non-free.db' from mirror.dimensiondata.com : The requested URL returned error: 404
error: failed retrieving file 'non-free.db' from mirror.kamtv.ru : The requested URL returned error: 404
error: failed retrieving file 'non-free.db' from ct.mirror.garr.it : The requested URL returned error: 404
error: failed to synchronize all databases (failed to retrieve some files)
Mod Edit: Improved formatting