This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## How to fix opendir operation not permitted error from rsync on macOS Catalina | |
by Ertugrul Harman (twitter.com/harmancode - github.com/harmancode) | |
27 Dec 2020 | |
I was getting opendir operation not permitted error from rsync on macOS Catalina. | |
The command I was using: rsync -vaE --progress /Volumes/SourceName /Volumes/DestinationName | |
Source: https://apple.stackexchange.com/a/117469/65292 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To install nvidia drivers (based on 515.48.07 at the time of writing) in a clean elementary os 6.1 Jolnir install. DON'T use the driver listed in the eos store. | |
// Install the toolchain | |
sudo apt install build-essential | |
sudo apt install software-properties-gtk | |
sudo apt install software-properties-common | |
sudo apt install linux-headers-$(uname -r) | |
// Install the drivers | |
sudo add-apt-repository ppa:graphics-drivers/ppa |
OlderNewer