tips:ubuntu:xenial

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tips:ubuntu:xenial [2016/05/05 11:19] – [ssh] scipiotips:ubuntu:xenial [2017/08/05 18:35] (current) – [Epson L355] scipio
Line 23: Line 23:
 Host * Host *
   PubkeyAcceptedKeyTypes=+ssh-dss   PubkeyAcceptedKeyTypes=+ssh-dss
-  HostkeyAlgorithms ssh-dss+  HostkeyAlgorithms=+ssh-dss
   KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1   KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1
 </code> </code>
Line 36: Line 36:
 must must
 <code> <code>
-sudo apt-get -y install pigz vim inxi iftop htop +sudo apt-get -y install pigz vim inxi iftop htop xclip
 </code> </code>
  
Line 54: Line 54:
 sudo apt-get install default-jre icedtea-plugin sudo apt-get install default-jre icedtea-plugin
 </code> </code>
 +
 +for skype indicator
 +<code>
 +apt-get install sni-qt:i386
 +</code>
 +
 +kernel backport
 +<code bash>
 +sudo add-apt-repository ppa:canonical-kernel-team/ppa
 +sudo apt-get update
 +</code>
 +
 ===== diodon ===== ===== diodon =====
  
Line 73: Line 85:
 </code> </code>
  
 +===== stacer =====
  
 +https://github.com/oguzhaninan/Stacer/releases
 ===== owncloud ===== ===== owncloud =====
  
Line 85: Line 99:
 sudo apt-get install nodejs sudo apt-get install nodejs
 </code> </code>
 +
 +===== WIFI hack after suspend/resume =====
 +
 +/etc/pm/sleep.d/12_wifi (chmod +x)
 +<code>
 +#!/bin/bash
 +case $1 in
 +    "resume")
 +    iwlist scan
 +    ;;
 +esac
 +</code>
 +
  
 ===== Epson L355 ===== ===== Epson L355 =====
Line 93: Line 120:
 </code> </code>
  
 +with gnome shell
 +<code>
 +cp /opt/epson-inkjet-printer-201207w/ppds/Epson/Epson-L555_Series-epson-driver.ppd.gz /usr/share/cups/model/
 +lpinfo -v
 +lpadmin -p EpsonL355 -m Epson-L555_Series-epson-driver.ppd.gz -v dnssd://EPSON%20L355%20Series._pdl-datastream._tcp.local/ -E
 +</code>
 ===== NAC ===== ===== NAC =====
  
Line 104: Line 137:
 password=... password=...
 </code> </code>
 +
 +===== Routeros Mikrotik =====
 +
 +Xenial support by default RSA ssh keys but mikrotik > 6.31 has to be enabled
 +<code>
 +/ip ssh set strong-crypto=yes
 +</code>
 +
 +===== Maintenance =====
 +
 +Purge old kernels (install byobu package before)
 +<code>
 +purge-old-kernels
 +</code>
 +
 +===== ASUS UX305U =====
 +
 +==== intel firmware ====
 +
 +  * https://01.org/linuxgraphics/intel-linux-graphics-firmwares
 +
 +<code bash>
 +cd /tmp
 +wget https://01.org/sites/default/files/downloads/intelr-graphics-linux/sklgucver61.tar.bz2 
 +tar xvjf sklgucver61.tar.bz2 
 +cd skl_guc_ver6_1/
 +sudo ./install.sh --install
 +
 +cd /tmp
 +wget https://01.org/sites/default/files/downloads/intelr-graphics-linux/kbldmcver101.tar.bz2 
 +tar xjvf kbldmcver101.tar.bz2
 +cd kbl_dmc_ver1_01/ 
 +sudo ./install.sh --install 
 +
 +sudo update-initramfs -u -k all
 +</code>
 +==== brightness ====
 +
 +<code bash>
 +apt install xdotool
 +</code>
 +
 +<file /etc/default/grub>
 +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
 +</file>
 +
 +create keyshorcuts on
 +<code>
 +xdotool key XF86MonBrightnessUp
 +xdotool key XF86MonBrightnessDown
 +</code>
 +
  • tips/ubuntu/xenial.1462439992.txt.gz
  • Last modified: 2016/05/05 11:19
  • by scipio