Linux S3/S4 testing tool - rtcwake

Source: lpmt.c

If you are looking for a S3/S4 testing program under Linux OS. Here is a simple example to demonstrate how to do it by rtc

Compile:
gcc -o lpmt lpmt.c

Run:  (S3 for 100 cycles)
sudo ./lpmt S3 100
use it at your own risk :)

Ubuntu menu editor - alacarte

very useful tool sudo apt install alacarte

Ubuntu module blacklist

Edit blacklist.conf sudo gedit /etc/modprobe.d/blacklist.conf Add below statement at the end of the blacklist.conf blacklist [module name] Update ramfs and reboot sudo update-initramfs -u sudo reboot

Install R on Ubuntu 16.04

  • Add R repository
  • sudo echo "deb http://cran.rstudio.com/bin/linux/ubuntu xenial/" | sudo tee -a /etc/apt/sources.list
  • Add R to Ubuntu Keyring
  • gpg --keyserver keyserver.ubuntu.com --recv-key E084DAB9 gpg -a --export E084DAB9 | sudo apt-key add -
  • Install R-base
  • sudo apt-get update sudo apt-get install r-base r-base-dev
  • Install GUI tool - Rstudio
  • sudo apt-get install gdebi-core wget https://download1.rstudio.org/rstudio-0.99.896-amd64.deb sudo gdebi -n rstudio-0.99.896-amd64.deb rm rstudio-0.99.896-amd64.deb

    Orange - data analysis tool

    Installation pip install orange3 Run orange python -m Orange.canvas