This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo dpkg --add-architecture i386 | |
| sudo apt-get update | |
| sudo apt install libgl1-mesa-dri:i386 libgl1:i386 | |
| sudo apt-get upgrade steam -f | |
| sudo apt install nvidia-driver-libs:i386 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # first lets open the file locate.gen with nano but with root | |
| sudo nano /etc/locale.gen | |
| # second, lets uncomment the "en_US.UTF-8" line | |
| # thrid save the file and set the next command: | |
| sudo locale-gen | |
| # and that's all. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Execute this script with sudo | |
| apt-get -y install aptitude | |
| aptitude -y install git build-essential libapparmor-dev pkg-config gawk | |
| git clone https://github.com/netblue30/firejail.git | |
| cd firejail | |
| ./configure | |
| make | |
| make install-strip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # just we need install the 'libcap2-bin' software and set some commands: | |
| sudo apt-get install libcap2-bin | |
| sudo setcap cap_net_bind_service=+ep /usr/local/bin/node | |
| # by the way if the route of the node bin file is other we can search the correct route with the next command: | |
| which node | |
| # and that's it my friends, very easy and simple :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://www.diversidadyunpocodetodo.com/firmware-failed-to-load-rtl_nic-rtl8168g-2-fw-2-debian-no-arranca/ | |
| # is need it first add the flags “contrib” y “non-free” to the deb sources (/etc/apt/sources.list) | |
| sudo aptitude -y update | |
| sudo aptitude -y install linux-headers-$(uname -r) | |
| sudo aptitude -y install firmware-linux firmware-realtek | |
| echo "lets to reboot the pc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo add-apt-repository ppa:ubuntudde-dev/stable | |
| sudo apt update | |
| sudo apt install deepin-system-monitor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "alias open='gio open'" >> ~/.bashrc | |
| source ~/.bashrc | |
| # now for test lets go to a folder and type: | |
| # open . | |
| # and press ENTER, and the folder will be opened |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # first, install | |
| sudo aptitude -y install lm-sensors | |
| # after, lets to detect our sensors | |
| sudo sensors-detect | |
| # after type: yes, yes, yes, to all | |
| # lets to see the temp with the command: | |
| sensors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Las firmas siguientes no se pudieron verificar porque su llave pública no está disponible: NO_PUBKEY XXXXXXXXXXXXX | |
| gpg --keyserver keyserver.ubuntu.com --recv XXXXXXXXX | |
| gpg --armor --export XXXXXXXXX | sudo apt-key add - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Solution for the message "No such file or directory" But the file exists! | |
| # First lests to see is the file is a 32-bit file writing the command: | |
| # file nameOfTheFile | |
| # and pressing ENTER | |
| # is possible of you get a message like that: "...ELF 32-bit LSB executable.." | |
| # so, is right, is a 32-bit file | |
| # now we have to install the 32-bit packages to execute that file write this command: | |
| sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install ia32-libs && sudo aptitude -y install lib32z1 |