Cut and paste in Finder

Mac doesn’t support Cut and Paste from Finder using: CMD-X CMD-V But you can achieve exactly the same results by using: CMD-C and then CMD-OPT-V This isn’t very intuitive as most OS’s use Ctrl-X and Ctrl-V, but the functionality is there if a little hidden. For a bonus tip: if you hold press ALT/OPTION over the open Menu Bar you will see alternative functions appear. There is at least one plugin on the App Store, that turns this into CMD-X, but to be honest, I don’t think CMD-OPTION-V too hard a combination to master.

18 June 2023 · Mark

Open - command Mac terminal

Open, command Mac terminal: Most Mac users will know that the open command in the Terminal will open files in the GUI or open a directory in Finder for example open . will open Finder in the current directory, this is useful, but there are a few more things it can do including opening in a specified application. Here is the usage dump from the tool: Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-s <partial SDK name>][-b <bundle identifier>] [-a <application>] [-u URL] [filenames] [--args arguments] Help: Open opens files from a shell. By default, opens each file using the default application for that file. If the file is in the form of a URL, the file will be opened as a URL. Options: -a Opens with the specified application. -b Opens with the specified application bundle identifier. -e Opens with TextEdit. -t Opens with default text editor. -f Reads input from standard input and opens with TextEdit. -F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents. -R, --reveal Selects in the Finder instead of opening. -W, --wait-apps Blocks until the used applications are closed (even if they were already running). --args All remaining arguments are passed in argv to the application's main() function instead of opened. -n, --new Open a new instance of the application even if one is already running. -j, --hide Launches the app hidden. -g, --background Does not bring the application to the foreground. -h, --header Searches header file locations for headers matching the given filenames, and opens them. -s For -h, the SDK to use; if supplied, only SDKs whose names contain the argument value are searched. Otherwise the highest versioned SDK in each platform is used. -u, --url URL Open this URL, even if it matches exactly a filepath -i, --stdin PATH Launches the application with stdin connected to PATH; defaults to /dev/null -o, --stdout PATH Launches the application with /dev/stdout connected to PATH; --stderr PATH Launches the application with /dev/stderr connected to PATH to Examples: View a MD file in Marked 2.app: open -a Marked\ 2 markdown.md ...

2 February 2023 · Mark

Linux Mint Login Loop

The default installation of Linux Mint on my iMac went very well right up until the moment it didn’t. I don’t know the cause, but I did find a few posts online about the problem I had, namely a login loop: whereby the login screen appeared to accept the login details only to show a blank screen momentarily, and then return to the login prompt. There were comments online proffering a solution in the form of ALT-CTRL-F1 etc. Which is supposed to open a terminal window to allow fixes to be applied. The problem for me was that none of the function keys worked F1, F2 etc. ...

15 January 2023 · Mark

iMac 2012 Recovery

I am currently in the process of resetting an old 2012 iMac after deciding trying to set up the Fusion Drive in there was too much hassle. I think it can be done but as it is a proprietary RAID setup I decided to reinstall MacOS and then use an external drive as a dual boot Linux/Mac setup. I had this before and it worked well enough, the only requirement was to hit the boot drive selector shortcut. ...

4 January 2023 · Mark

Change Mac Machine Name via Terminal

I needed to change the name of one of my Macs remotely and this is the command to do it: sudo scutil --set HostName [NewHostNameHere]

22 October 2021 · Mark

SMB Mac 11.3.1

Apple in its infinite wisdom changed the settings for Samba ‘SMB’ protocol and killed access to my NAS server, thanks Apple not like I wasn’t using it all the time. I found a fix online, don’t trust me check if there are any risks in this fix: Create or edit this following file and add the 2 lines to the file. ~/Library/Preferences/nsmb.conf [default] protocol_vers_map=2

8 May 2021 · Mark