Tag: terminal

  • Convert a BIN+CUE CD image to ISO in macOS

    Tl;Dr Download and extract poweriso to the user binary directory. curl -o temp-download-delete http://www.poweriso.com/poweriso-1.3-osx.tar.gz && tar -xvzf temp-download-delete -C /usr/local/bin/ && rm temp-download-delete Convert the BIN+CUE to a single ISO file — run this command from the directory in which the BIN+CUE files are stored: poweriso convert ./”Image Name with Spaces.cue” -o ./”Image Name with…

    Continue Reading →

  • How to manually kill a MariaDB process

    Thanks to Wojtek Dmyszewicz on StackOverflow for saving me time and frustration when I ran into [ERROR] InnoDB: Unable to lock ./ibdata1, error while working with MariaDB at the command line. The solution is to list all currently running MariaDB processes, which call themselves ‘mysql’ for compatibility with MySQL: This will output some results, such…

    Continue Reading →