Mac OS update -Repair bootcamp gap between GPT3 and GPT4

Broken BOOTCAMP in OS X 11 El Capitan -------------------------------------------------------- // To prevent from this issue: please do not update OS X if you did a manually resize operation on your already installed bootcamp, unless you did not backup your windows files. or change the way you resize your bootcamp partitition ti the following: backup your windows files, delete the bootcamp partitions with sox’s bootcamp helper - create a new (resized) bootcamp with bootcamp helper - update OS X! // The following guide adresses MAC setups with a single disk // If you have a multi disk setup you must adjust…

0 Comments

Mac OS Seafile – change synchronization folder location

1. Activate "show hidden files": defaults write com.apple.finder AppleShowAllFiles YES 2.1 Open file: /Users/<username>/.ccnet/seafile.ini 2.2 Edit entry: /path to the root folder where the "Seattle" folder is at /Seafile/.seafile-data 3. Deactivate "show hidden files": defaults write com.apple.finder AppleShowAllFiles NO  

0 Comments

Mac OS Kitematic – Docker Image Toolbox with sharelatex

1. Install Kitematic (Beta) https://www.docker.com/toolbox 2. Install tiagoboldt/sharelatex-docker https://hub.docker.com/r/tiagoboldt/sharelatex-docker/ 3. Start the docker image 4. Open Exec terminal 5. Change directory to: /sharelatex/web 6. Execute: grunt create-admin-user --email joe@example.com  replace  joe@example.com with your adminstrator's email address 7. Follow the generated web link to set the password: Maybe you need to replace the ip and port to the ones provided by kitematic for your image, see: Settings/Ports/MAC IP:PORT 8. Publish (www): in order to be able to access your docker image from the internet you must expose your local docker subnet ip/port to your host subnet: ill recommend using nap/netcat/ncat for this: https://nmap.org/download.html#macosx 8.1 Install…

0 Comments

Mac OS 10.10 FreeImage Library > 3.17 Makefile for OS X > 10.10 Yosemite and Xcode 6.x

This is a working FreeImage Library Makefile to support the library building process  within OS X...   [Tip] Make sure to correctly setup your MAC OS X Xcode SDK within this Makefile. Download Makefile.osx   # Mac OSX makefile for FreeImage # General configuration variables: CC_X86_64 = clang CPP_X86_64 = clang++ -stdlib=libc++ #CPP_X86_64 = clang++ -stdlib=libc++ COMPILERFLAGS = -Os -fexceptions -fvisibility=hidden -DNO_LCMS -D__ANSI__ -DDISABLE_PERF_MEASUREMENT COMPILERFLAGS_X86_64 = -arch x86_64 COMPILERPPFLAGS = -Wno-ctor-dtor-privacy INCLUDE += INCLUDE_X86_64 = -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk CFLAGS_X86_64 = $(COMPILERFLAGS) $(COMPILERFLAGS_X86_64) $(INCLUDE) $(INCLUDE_X86_64) CPPFLAGS_X86_64 = $(COMPILERPPFLAGS) $(CFLAGS_X86_64) LIBRARIES_X86_64 = -Wl,-syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk LIBTOOL = libtool LIPO = lipo TARGET = freeimage STATICLIB…

3 Comments

Mac OS: Nvidia WebDriver GTX 750 and GTX9xx – Update Problems

[Do not copy and paste] Remember: always replace the following system version strings with your specific ones. Remember: you can force the default OS X display driver to load by adding nv_disable=1 to your boot flags   If you are using CLOVER keep in mind that you are loading the Nvidia driver by adding nvda_drv=1 to your boot flags. This results in the fact the Nvidia menu always show up OS X Default driver but is running the Nvidia webdriver: But if you exec: kextstat | grep web you will see something like the following (if  you are successfully running Nvidia's web driver) 112 2 0xffffff7f8261b000 0x2d7000…

0 Comments

Mac OS: Fix weird, not available, display resolutions

If you are like me: "not able to select the right display resolution for your display": go ahead an press the "OPTION KEY" while selecting "Scaled". This enables all (un)supported resolutions. The problem occurs for instance because of a bad EDID handshake of your graphics adapter and your display. For me the problem arises using a "LogiLink Mini DisplayPort Female to DisplayPort Male Converter" which connects via an original APPLE VGA adapter to a VGA display. (Other than that, this is the only solution to be able to use a VGA display with the latest OS X versions BUY - http://www.amazon.de/LogiLink-Mini-DisplayPort-Female-Converter/dp/B002UTSNGC)

0 Comments

COQ – Calculus of Inductive Constructions – Sublime – OS X 10.10.X

0. Preparation As of OS X 10.10 the official coq IDE version (Coq 8.4pl5) is not working. 0.1 Install brew Enter your terminal ans execute: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 0.2 Install coq brew install coq 0.3 Install coqide brew install Caskroom/cask/coqide   1. Install "Sublime Package Control": If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control: Click the Preferences > Browse Packages… menu Browse up a folder and then into the Installed Packages/ folder Download Package Control.sublime-package and copy it into the Installed Packages/ directory Restart Sublime Text 2.…

0 Comments

Mac OS Yosemite is in the house, but “brew” leaves?

Recently I got an undefined error "0", using brew 0.9.5: /usr/local/bin/brew: /usr/local/Library/brew.rb: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby: bad interpreter: No such file or directory /usr/local/bin/brew: line 23: /usr/local/Library/brew.rb: Undefined error: 0 I really do not know, why it is Ruby 1.8 (it is very old) being used here, but typing "ruby -version" leads to the fact, that we currently run Ruby of Version 2.0. So fixing this is pretty simple: 1. Open this file: "/usr/local/Library/brew.rb" (may depend, where exactly you have installed brew to -> see the error message!) 2. Edit the 1st line (replace 1.8 with your current version -> mine = 2.0)…

0 Comments