-
First get into terminal and type
sudo vim /etc/default/grub
. -
Next, the
grub.cfg
file should pop up. FindGRUB_CMDLINE_LINUX=""
and within the quotes type ini8042.reset i8042.nomux i8042.nopnp i8042
.noloop. -
So it should look like this:
GRUB_CMDLINE_LINUX="i8042.reset i8042.nomux i8042.nopnp i8042.noloop"
-
Hit save.
-
Next, you need to open up another terminal window and update grub by typing in
sudo update-grub
and finally restart.
This file contains 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
# Find out what the USB drive is named | |
df -h | |
# Unmount it | |
umount /dev/sdb1 | |
# Unmount this too if needed | |
umount /dev/sdb2 | |
# Copy ISO | |
sudo dd bs=4M if=LINK_TO_ISO of=/dev/sdb |
This file contains 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 apt install vim | |
sudo apt install silversearcher-ag | |
sudo apt install git | |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
sudo apt install python3-dev | |
sudo apt install python-virtualenv |
This file contains 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
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
# generate server.xml with the following command: | |
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
# run as follows: | |
# python simple-https-server.py | |
# then in your browser, visit: | |
# https://localhost:4443 | |
import BaseHTTPServer, SimpleHTTPServer | |
import ssl |
This file contains 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
mkdir ${HOME}/postgres-data/ | |
docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -v ${HOME}/postgres-data/:/var/lib/postgresql/data -p 5432:5432 postgres |
This file contains 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
import java.io.IOException; | |
import org.apache.hadoop.conf.Configuration; | |
import org.apache.hadoop.fs.FileSystem; | |
import org.apache.hadoop.fs.Path; | |
import org.apache.hadoop.hive.ql.exec.vector.BytesColumnVector; | |
import org.apache.hadoop.hive.ql.exec.vector.LongColumnVector; | |
import org.apache.hadoop.hive.ql.exec.vector.VectorizedRowBatch; | |
import org.apache.orc.CompressionKind; | |
import org.apache.orc.OrcFile; | |
import org.apache.orc.TypeDescription; |
This file contains 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
bild.de | |
deutschlandfunk.de | |
faz.net | |
imgur.com | |
mzee.com | |
news.google.com | |
reddit.com | |
spiegel.de | |
sueddeutsche.de | |
welt.de |
This file contains 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
deutschlandfunkkultur.de | |
linkedin.com | |
whatsapp.com | |
youtube.com | |
golem.de | |
heise.de |
OlderNewer