Tag

Linux

Best cpu frequency manager for linux

By | Linux | No Comments
cpu frequency manager for linux

By far the best cpu frequency manager for linux is a gnome extension call cpufreq. If you are not familiar with gnome extensions, they are very easy to manage and install. There is a Firefox plugin required, and once installed you can view your plugins here.

Features Include

  • Enable/Disable total cores in use
  • Granular control over power profiles
  • Easily set min/max frequency
  • Starts on boot and can be managed as a gnome plugin

Step 1 : Add the Gnome Firefox Plugin as prompted at the top of the page
Step 2: Click “On” button here

Install ccminer tpruvot fork Ubuntu 16.04

By | ccminer, Crypto Mining, NVIDIA | 5 Comments

This guide will teach you how to install ccminer tpruvot on Ubuntu 16.04

You must first run Install NVIDIA Driver and CUDA on Ubuntu 16.04 before proceeding.

[raw]
#!/bin/bash
mkdir tpruvot
cd tpruvot
git clone https://github.com/tpruvot/ccminer.git
cd ccminer/
export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib
export PATH=$PATH:/usr/local/cuda-8.0/bin
echo ‘export PATH=/usr/local/cuda-8.0/bin:$PATH’ >> ~/.bashrc
./autogen.sh
./configure
make
echo “Finished”
[/raw]

To buy a pre-compiled Docker container with this image compatible with NVIDIA GPU’s check my selection of miner friendly Docker containers at https://cryptoandcoffee.com

https://github.com/tpruvot

Install linux homebrew (brew) Ubuntu 16.04 LTS

By | Linux | No Comments

[raw]
sudo apt-get install -y curl g++ gawk m4 make patch ruby tcl

PATH=~/.linuxbrew/bin:/usr/local/bin:/usr/bin:/bin
unset LD_LIBRARY_PATH PKG_CONFIG_PATH
yes | ruby -e “$(curl -fsSL https://raw.github.com/Linuxbrew/linuxbrew/go/install)”
brew doctor

brew install gcc –with-glibc
brew tap homebrew/dupes
brew install git
brew install coreutils findutils gawk gnu-sed gnu-which grep make ruby

PATH=$HOME/.linuxbrew/bin:$HOME/.linuxbrew/sbin
brew install hello && brew test hello; brew remove hello
[/raw]