Useful Commands: Difference between revisions
From Lucca's Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Delete all docker images | Delete all docker images | ||
docker rmi -f $(docker images -a -q) | |||
Create a file and set its permissions | |||
install -m 755 /dev/null filename.txt | |||
Additional Resources: | Additional Resources: | ||
[https://arachnoid.com/SecureShell/index.html Arachnoid.com: How to use SSH] | [https://arachnoid.com/SecureShell/index.html Arachnoid.com: How to use SSH] |
Revision as of 00:55, 4 September 2024
Delete all docker images
docker rmi -f $(docker images -a -q)
Create a file and set its permissions
install -m 755 /dev/null filename.txt
Additional Resources: