Hard: Touchscreen disable
Listar dispositivos:
xinput
Habilitar:
xinput set-prop '<device name>' 'Device Enabled' 1
Desabilitar:
xinput set-prop '<device name>' 'Device Enabled' 0
Testado: Asus S400A (Ubuntu 14.04.2 LTS)

★
sheepfilms
almost home
let's talk about Bridgerton tea, my ask is open
Aqua Utopia|海の底で記憶を紡ぐ
ojovivo
"I'm Dorothy Gale from Kansas"
we're not kids anymore.
TVSTRANGERTHINGS
No title available

Janaina Medeiros
dirt enthusiast
art blog(derogatory)

JVL

No title available
Keni
Not today Justin
Show & Tell
Lint Roller? I Barely Know Her
wallacepolsom
seen from United States
seen from Brazil

seen from United States

seen from United States

seen from United States
seen from United States
seen from United States

seen from United States
seen from United States

seen from United Kingdom
seen from Czechia

seen from Singapore
seen from United States

seen from Italy
seen from United States

seen from France
seen from Türkiye

seen from United States
seen from United States

seen from Czechia
@gnulnx-blog
Hard: Touchscreen disable
Listar dispositivos:
xinput
Habilitar:
xinput set-prop '<device name>' 'Device Enabled' 1
Desabilitar:
xinput set-prop '<device name>' 'Device Enabled' 0
Testado: Asus S400A (Ubuntu 14.04.2 LTS)
Command: Split (dividir archivos grandes)
split -b 1G -d file file-part
Tamaños: B, K, M, G, T
cat file-part* > new-file
Config: Agregar Aplicaciones al Inicio
cd ~/.config/autostart
nano application.desktop
Substituir application por el nombre de la aplicación y editar el fichero:
[Desktop Entry] Type=Application Name=<Nombre> Exec=<path para el ejecutable> Icon=<path para el ícono> Comment=<descripción opcional>
Config: Orden Boot Grub
sudo nano /etc/default/grub
Modificar el valor de GRUB_DEFAULT (primera opción = 0)
sudo update-grub2
Command: lshw (Hardware List)
Instalación:
sudo apt-get install lshw
lshw [-format] [-options ...]
Formatos:
-short (información resumida)
-html, -xml (formatos de salida)
Opciones:
-class [class] (info de un tipo específico: address, bridge, bus, communication, disk, display, generic, input, memory, multimedia, network, power, printer, processor, storage, system, tape, volume)
-sanitize (Oculta información sensible, como números de serie)
Ejemplos:
sudo lshw -short -class processor
sudo lshw -html -class display > file.html
sudo lshw -sanitize -class system
Config: Terminal por defecto
sudo apt install dconf-editor
Abrir dconf-editor y desplegar las opciones hasta llegar a: org » gnome » desktop » applications » terminal
x-terminal-emulator y -e son las configuraciones padrón para Ubuntu.
Otra opción
gsettings set org.gnome.desktop.default-applications.terminal exec x-terminal-emulator
gsettings set org.gnome.desktop.default-applications.terminal exec-arg "-e"
GPG key Error
Reading package lists... Done W: GPG error: http://ppa.launchpad.net trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY HEX
El número HEX que aparece en el mensaje deberá substituir HEX en el comando:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys HEX
Instalar: Sublime Text 3 ppa
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
Source: webupd8
Instalar: Oracle Java 7 ppa
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer java -version
Configurar variables de entorno
sudo apt-get install oracle-java7-set-default
Source: webupd8