Mac에서 자동 로그인을 설정하고 한다면

사용자 & 그룹으로 이동한 후 사용자의 비밀번호 변경을 누릅니다.

이때 아이클라우드로 연동된 비밀번호를 분리된 비밀번호로 변경하면 됩니다.

자세한 사항은 아래 링크를 참고해주세요.


http://wpguru.co.uk/2014/08/how-to-enable-automatic-user-login-on-mac-os-x-yosemite/


아래 사이트에서 mame를 다운로드 하세요.

http://sdlmame.lngn.net

아래 사이트에서 sdl framework를 다운로드하여 마운트합니다. 그리고 sdl framework를 복사해서

자신의 시스템 Library/Frameworks에 붙여 넣기 하세요.

http://www.libsdl.org/download-2.0.php




마메 프로그램이 터미널에서 명령어로 실행해야 실행 되더군요. 그냥 파인더에서 마우스로 실행하면 rom이 없다고만 계속 나옵니다.


i-iMac:mame0167-64bit iwaly$ pwd

/Users/12345/Downloads/mame0167-64bit

i-iMac:mame0167-64bit iwaly$ ls

README.md docs keymaps roms

artwork hash mame.doxygen samples

cfg hlsl mame64 tools

i-iMac:mame0167-64bit iwaly$ ./mame64 



세 손가락으로 드래그하기 기능이 ..

환경설정 > 손쉬운 사용 > 마우스와 트랙패드 > 트랙패드 옵션을 보면 확인할 수 있습니다.



http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx



How to create a bootable USB stick on OS X

  1. Open the Terminal (in /Applications/Utilities/ or query Terminal in Spotlight).

  2. 3

    Convert the .iso file to .img using the convert option of hdiutil e.g., 

    hdiutil convert -format UDRW -o ~/path/to/target.img ~/path/to/ubuntu.iso

    Note: OS X tends to put the .dmg ending on the output file automatically.

  3. 4

    Run 

    diskutil list
    to get the current list of devices.

  4. 5

    Insert your flash media.

  5. 6

    Run 

    diskutil list
    again and determine the device node assigned to your flash media (e.g. /dev/disk2).

  6. 7

    Run 

    diskutil unmountDisk /dev/diskN
    (replace N with the disk number from the last command; in the previous example, N would be 2).

  7. 8

    Execute 

    sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m
    (replace /path/to/downloaded.img with the path where the image file is located; for example, ./ubuntu.img or ./ubuntu.dmg).

    • Using /dev/rdisk instead of /dev/disk may be faster
    • If you see the error dd: Invalid number '1m', you are using GNU dd. Use the same command but replace bs=1m with bs=1M
    • If you see the error dd: /dev/diskN: Resource busy, make sure the disk is not in use. Start the 'Disk Utility.app' and unmount (don't eject) the drive
  8. 9

    Run 

    diskutil eject /dev/diskN
    and remove your flash media when the command completes.

  9. 10

    Restart your Mac and press alt/option key while the Mac is restarting to choose the USB stick.


+ Recent posts