Santhosh Kumar D
Forum Replies Created
- AuthorPosts
- Santhosh Kumar DKeymaster@santhosh
Typing the
find
command followed by a period.
separated by a space lists all files in the current directory.find .
Santhosh Kumar DKeymaster@santhoshIf 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
Santhosh Kumar DKeymaster@santhoshIf 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 in reply to: Announcing Arclind Mindspace – Crash course platform for self-learners #3674Santhosh Kumar DKeymaster@santhoshThat’s a good initiative. Looking forward to create some crash courses on Mindspace.
March 1, 2020 at 4:07 PM in reply to: Private: Ctrl + Shift + Esc is the shortcut to open Task Manager #2891Santhosh Kumar DKeymaster@santhoshYou 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 in reply to: Private: Renew Let’s Encrypt for Cloudflare-powered websites with Apache Ubuntu #2138Santhosh Kumar DKeymaster@santhoshAnd, 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 in reply to: Private: Reset MySQL 5.7 root password on Ubuntu 18.04 Linux #1963Santhosh Kumar DKeymaster@santhoshHi 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