This is mostly a post for me to use as reference because I recently found myself needing to push a project to my self hosted GitLab server but had completely forgotten how to do that from the command line. I use a Mac by the way but the process should be similar on any Linux distro and even windows as…
Category: Reference
How to Create a Clonezilla USB stick on Mac OS
Without using any additional software then what’s already on your Mac, you can easily create a USB stick that boots to Clonezilla. Just follow the below instructions and you’ll be well on your way to cloning disks and partitions. First you have to actually download the Clonezilla ISO. If you’ve already done this you can skip this step. Download Clonezilla…
Can’t Log in to Your Mac? Create a New Admin Account
It happens to all of us, forgetting your password is easier than you think. In my case, I had an old MacBook that I hadn’t used in probably 2 years or so. None of my usual password worked and so I was left with either trying formatting the drive and reinstalling the OS or trying to reset the password by…
This iPhone is running iOS xx.x which may not be supported by this version of Xcode
This is more or less for me because I keep forgetting where the repository with all of the device support files is and where the device support files should be placed. If you’re here because you need help with this error then follow the short tutorial below: Go to https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport and find the device support files that Xcode claims you’re…
SSH to Cisco ASA fails, unable to negotiate, no matching key exchange method found.
Turns out there is a very simple fix for this. On the ASA ssh key-exchange group dh-group14-sha1 Or as a quick work around you could add -oKexAlgorithms=+diffie-hellman-group1-sha1 in the client bash>ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 username@xxx.xxx.xxx.xxx
Setting the MySQL Root User Password on Mac OS Server
Regardless of how you found your way to this post, your end goal must be to set or reset the root user password for your MySQL installation on Mac OS. This is another post I’m adding mostly for my own reference but if it can help someone else as a result that’s awesome. First you’ll need to stop the MySQL…