There was an error while loading. Please reload this page.
1 parent 0da0161 commit 6d6abb0Copy full SHA for 6d6abb0
README.md
@@ -180,12 +180,19 @@ iotop
180
# Like top
181
htop
182
183
+# Disable ecAssessment system policy security (allow unidentified app to be started)
184
+sudo spctl --master-disable
185
+
186
# Convert PNG image sequence (image-000.png) to H.264 using ffmpeg
187
ffmpeg -i ./image-%03d.png -f mp4 -vcodec libx264 -pix_fmt yuv420p <filename>.mp4
188
189
# AWS S3: Get total size and number of files of bucket
190
aws s3api list-objects --bucket <bucket_name> --output json --query "[sum(Contents[].Size), length(Contents[])]"
191
192
+# SSH login without password
193
+ssh-keygen -t rsa -b 2048 -v
194
+ssh-copy-id -i ~/.ssh/<cert>.pub <user>@<server-ip>
195
196
```
197
198
--------------------------
0 commit comments