Tag: Linux
https SSL A+ with Nginx
Source: https://bjornjohansen.no/optimizing-https-nginx This helped me move from a B to A+ COPY / PASTE from article for safety in case site goes down: #################################################################### Now that you have secured … Read More
rtl8723be wifi on HP Stream 11″ – Arch / Ubuntu .. others ..
There are two antennas on this card (rtl8723be). Default drivers limit the power & range dramatically. The same card is used in many notebooks from HP and Lenovo. Getting within … Read More
Arch pacman -Syu :::: exclude kernel
To avoid having pacman -Syu update the kernel or other packages, add them to the IgnorePkg list. Edit: nano /etc/pacman.conf Set as individual entries, or comma separated list: IgnorePkg = … Read More
SMB Mount – Ubuntu Client – OSX Server
1. Install cifs sudo apt-get install cifs-util 2. edit /etc/fstab //Server/mount/point(/folder) /local/mount/point cifs credentials=/home/(username)/.smbcredentials,uid=(501),iocharset=utf8,nounix,noperm,rw,sec=ntlmssp 0 0 Make sure to change all items above in (parens) to match your config 3. … Read More
Producing high CPU load
Source: http://superuser.com/questions/443406/how-can-i-produce-high-cpu-load-on-a-linux-server#443409 This loads four cores as 100%: for i in 1 2 3 4; do while : ; do : ; done & done Stop the above with: for … Read More
What version of Python is running ?
Two things to check: 1. Version # In the Python Console: import sys print (sys.version) Sample output: 3.5.0 (v3.5.0:374f501f4567, Sep 12 2015, 11:00:19) [GCC 4.2.1 (Apple Inc. build 5666) (dot … Read More