Tag

Computer architecture

Fix tracker-store and tracker-fs high CPU usage on Ubuntu / Zorin OS

By | Linux | One Comment

Fix tracker-store and tracker-fs high CPU usage on Zorin OS.

[raw] echo -e “\nHidden=true\n” | sudo tee –append /etc/xdg/autostart/tracker-extract.desktop /etc/xdg/autostart/tracker-miner-apps.desktop /etc/xdg/autostart/tracker-miner-fs.desktop /etc/xdg/autostart/tracker-miner-user-guides.desktop /etc/xdg/autostart/tracker-store.desktop > /dev/null
gsettings set org.freedesktop.Tracker.Miner.Files crawling-interval -2
gsettings set org.freedesktop.Tracker.Miner.Files enable-monitors false
tracker reset –hard
[/raw]

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

How to Build a Hackintosh – General Overview

By | Hackintosh | No Comments

Those who are unfamiliar with Hackintosh will appreciate this overview of general steps to preparing a machine and running a Hackintosh!  First, always start by resetting your BIOS to default settings.  You want to make sure C-States/Power States are disabled and Disable Frequency Scaling.  Additionally, do not use Intel Raid on your motherboard, as this will not work when trying to install.

Clover Location Choice:

Choosing where to install Clover is critical.  You must decide if you want to boot from a USB key every time or install directly to your Hard Drive.  When installing to your Hard Drive be careful that you know where your Kexts are loading from.  I personally prefer booting off a USB key and the guides are built around this.  Our Install Guides will work without changing your /S/L/E – and should boot perfectly.

Step 1.  Create a bootable installer for macOS

Here we setup macOS Sierra and install it onto the USB key.

Step 2.  Clover Install USB key

Clover is the Bootloader which will allow us to see our hard drive that has OS X installed to it.  We add this after we have created a USB installer in step 1, otherwise it would be overwritten.

Step 3. Add Kexts to the EFI Partition of the device you’ve installed Clover to (USB most likely) for Motherboard

Kexts are like Drivers.  We need these to access certain hardware such as ethernet cards or audio cards.

Step 4.  Install

Configuration after Install

Clover Configurator is used to configure Clover config file easily with a GUI.  First Download and launch Clover Configurator.  Mount your Boot drive that has Clover installed on it.  Click the import button in the bottom left to open you config.xml from /EFI/Clover/

Kext Utility will help you easily install additional Kexts.  After the kext is installed the directory permissions will be re-written automatically.

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]