Tag

Computing

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]

nvidia-384 libEGL.so.1 is not a symbolic link solved

By | Linux, NVIDIA | No Comments

Fixes NVIDIA-384 problem with libEGL.so.1 is not a symbolic link
[raw] sudo mv /usr/lib/nvidia-384/libEGL.so.1 /usr/lib/nvidia-384/libEGL.so.1.org
sudo mv /usr/lib32/nvidia-384/libEGL.so.1 /usr/lib32/nvidia-384/libEGL.so.1.org
sudo ln -s /usr/lib/nvidia-384/libEGL.so.384.90 /usr/lib/nvidia-384/libEGL.so.1
sudo ln -s /usr/lib32/nvidia-384/libEGL.so.384.90 /usr/lib32/nvidia-384/libEGL.so.1
[/raw]

Lenovo Thinkpad X230 Hackintosh Guide Sierra OS X

By | Hackintosh | No Comments

Lenovo Thinkpad X230 Hackintosh Guide Sierra OS X

Step 1. Clover Install USB key

Step 2. Create a bootable installer for macOS

Step 3. Add Lenovo-Thinkpad-X230-PERFECT-KEXTS

os-x-voodoo-ps2-controller – required for usage of keyboard/mouse

Step 4. Add Audio

To prepare the X230 for Audio, let’s first mount the EFI partition with Clover Configurator

Edit config.plist to Inject Audio ID = “1” – this will allow the Audio_ALCinjection script to inject.

For Audio, the easiest solution (since Brix is quite old now) is to run Audio_ALCinjection.command

Inject Intel = true

Video Ports = 3 (or leave blank if you’re not messing with external monitors, I’m not sure if this does anything with intel and/or with detection but I have it)

ig-platform-id = 0x01660003

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]