Stream to LG smart tv from mac

Install https://plex.tv/downloads Run it, add movies/library of movies On LG tv, go to input list.  you should see plex media server.  Click it, find your movie, enjoy. For more info, see:


Windows 10 not recognize cdrom

reg.exe add “HKLM\System\CurrentControlSet\Services\atapi\Controller0” /f /v EnumDevice1 /t REG_DWORD /d 0x00000001


Convert ROM to Game Doctor format

See http://gamedoctor-sf6.blogspot.com/   Download one of the bin datas of the UCon64 website: uCON64 bin data for Windows Then you have to download a GUI: uCON64 GUI:uf-FOX Additional you can download a Super Nes dat file, which makes the options easier to use for you: uCON64 Super Nintendo dat file   Then open the front end’s […]


screen usage

screen -S foo Then to reattach it, run screen -r foo # or use -x, as in screen -x foo # for “Multi display mode” (see the man page)


Gray disabled sound icon on mac

Fix WITHOUT reboot:   chown -R _coreaudiod:admin /Library/Preferences/Audio # Fix the dynamic linkers using the following command sudo update_dyld_shared_cache -force # Restart the coreaudio service sudo killall coreaudiod


apache unresponsive

apache2 hangs.  Check logs, see: [error] could not make child process 16190 exit, attempting to continue anyway check your php files (such as drupal’s includes/common.inc and sites/all/modules/advagg/advagg.missing.inc ) for: ignore_user_abort Try to comment all out, and restart apache.


apt-get upgrade getting: Err http://security.ubuntu.com raring-security/universe amd64 Packages 404 Not Found [IP: 91.189.91.15 80]

To make apt-get update work, we simply need to edit /etc/apt/sources.list and update all URLs from security.ubuntu.com and archive.ubuntu.com to point to old-releases.ubuntu.com, as per the following sed command: sudo sed -i.bak -r ‘s/(archive|security).ubuntu.com/old-releases.ubuntu.com/g’ /etc/apt/sources.list After this, sudo apt-get update seems to run without a hitch. Of course if you do this, you’re accepting to […]