Contents
Sun, May 18, 2014
EXTERNAL MONITOR
Resolution
Workaround for undetected resolutions:
$ nvidia-xconfig # Create xorg.conf based on detected hardware
$ sudo vim /etc/X11/xorg.confAmend Monitor section of xorg.conf with the correct specifications. In my case, the HorizSync and VertRefresh values were incorrect.
Reboot, then check display for native resolution.
If it’s not listed, run the following to get its modeline details.
$ cvt 1680 1050
# 1680x1050 59.95 Hz (CVT 1.76MA) hsync: 65.29 kHz; pclk: 146.25 MHz
Modeline "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053 1059 1089
-hsync +vsyncAdd the modeline values to xorg.conf
/etc/X11/xorg.conf
Section "Monitor"
Identifier "Monitor0"
VendorName "Samsung"
ModelName "SyncMaster 2253BW"
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 75.0
Option "DPMS"
Modeline "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053
1059 1089 -hsync +vsync
EndSectionReboot, the native resolution should now be listed.
Mon, May 19, 2014
OS X INSTALLATION
Media
Obtainable from Applications prior to installation when downloaded from App Store.
To create bootable USB flash drive:</br> Open Disk Utility, select the drive.</br> Choose Partition tab, select 1 Partition from Partition Layout.</br> Click Options, choose GUID Partition Table, then OK and Apply.
$ sudo Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia \
--volume /Volumes/untitled --applicationpath Install\ OS\ X\ Mavericks.app \
--nointeractionInstallation
Reboot while holding down the option key.</br> Select the USB flash drive.</br> For clean install, select Disk Utility. Erase the / partition.</br> After that, select Reinstall OS X.