Santhosh Kumar D
Forum Replies Created
- AuthorPosts
- August 29, 2020 at 6:05 AM #3764
Santhosh Kumar D
KeymasterTyping the
find
command followed by a period.
separated by a space lists all files in the current directory.find .
August 28, 2020 at 1:06 PM #3697Santhosh Kumar D
KeymasterIf a file is write-protected, you will be prompted to confirm the deletion. To force delete a file without being prompted, you need to use the
rm -f
command followed by the file name.rm -f filename
August 28, 2020 at 1:03 PM #3696Santhosh Kumar D
KeymasterIf a subdirectory or a file within the main directory is write-protected, you will be prompted to confirm the deletion.
To force delete a directory containing subdirectories and files without being prompted, you need to use the
rm -rf
command followed by the directory name.rm -rf directory
August 26, 2020 at 9:15 PM #3674Santhosh Kumar D
KeymasterThat’s a good initiative. Looking forward to create some crash courses on Mindspace.
March 1, 2020 at 4:07 PM #2891Santhosh Kumar D
KeymasterYou can also press
Windows key
+X
to get a quick menu displaying many useful options including the Task Manager.November 25, 2019 at 10:59 PM #2138Santhosh Kumar D
KeymasterAnd, if you want to delete an issued certificate for a particular domain name, you can do so with the following command.
sudo certbot delete --cert-name example.com
October 8, 2019 at 12:39 PM #1963Santhosh Kumar D
KeymasterHi Wesley Santos, please erase the
skip-grant-tables
andskip-networking
lines you added in Step 3.
Many thanks for the clarification. I have added it as step 8 in the above tutorial. - AuthorPosts