Install Codecs
Thank you pceiley
How-to: h264 etc. Support for Firefox (including ffmpeg install)
$ mkdir ~/build && cd ~/build $ curl -LO https://ffmpeg.org/releases/ffmpeg-4.2.tar.bz2 $ tar jxf ffmpeg-4.2.tar.bz2 $ cd ffmpeg-4.2 $ sudo swupd bundle-add c-basic devpkg-libva devpkg-freetype devpkg-opus devpkg-libtheora devpkg-libvorbis $ ./configure --prefix=/usr/local --enable-gpl --enable-nonfree --enable-libfreetype --enable-libopus --enable-libtheora --enable-libvorbis --enable-shared && make && sudo make install $ sudo sh -c 'echo /usr/local/lib >>/etc/ld.so.conf' $ sudo ldconfig
Then install VLC from Software or reinstall Videos Application, now you can play mp4 files.
To install NodeJS
Go to NodeJS Page and download nodejs
$ cd /opt/ $ sudo chmod -R 755 ./ $ sudo tar xf node-"YOUR VERSION"-linux-x64.tar.xz -d /opt/ $ nano ~/.profile
Add the lines:
export NODEJS_HOME=/opt/node-“YOUR VERSION”-linux-x64/bin
export PATH=$NODEJS_HOME:$PATHse
Update your file:
$ . ~/.profile
Check your version:
$ node -v
Check your version of NPM with:
$ npm -v
Install Visual Studio Code (with bash terminal)
Go to Downloads to download VSC.
$ sudo unzip VSCode-linux-x64.zip -d /opt/VSC
$ sudo nano /usr/share/applications/MSVS.desktop
Add this:
[Desktop Entry]
Name=Visual Studio Code
Comment=Editor de código Visual Studio Linux
Exec=/opt/VSD/VSCode-linux-x64/bin/code
Icon=/opt/VSD/VSCode-linux-x64/resources/app/resources/linux/code.png
Terminal=false
Then look in your application menu.
Happy Coding!