Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Oracle Installation, Configuration, Troubleshooting and Scripting on Linux Platforms (Oracle Enterprise Linux, RedHat, SuSE, Ubuntu, Mandriva, etc.)
E37: No write since last change (add ! to override) how to solve
Since you didn't change anything in the file, just exit the file using :q! Instead of :q In this way, you will exit the file without saving it. Discard the changes. For your further information: :q! : /* This Command is used to quit without save the changes */ :wq : /* This command is used to save tRead more
Since you didn’t change anything in the file, just exit the file using :q! Instead of :q
In this way, you will exit the file without saving it. Discard the changes.
For your further information:
how to list all linux users and groups ?
cd /home Here you can find the user and group name. type the below command ls -lrt
cd /home
Here you can find the user and group name. type the below command
ls -lrt
linux command to delete file ?
To remove (or delete) a file or directory in Linux from the command line, use the rm (remove) command Examples:- 1.To delete a single file rm filename 2.To delete multiple files rm filename1 filename2 filename3 rm *.pdf Use the -i option to confirm each file before deleting it rm -i filename(s) UseRead more
To remove (or delete) a file or directory in Linux from the command line, use the
rm
(remove) commandExamples:-
1.To delete a single file
rm filename
2.To delete multiple files
rm filename1 filename2 filename3
rm *.pdf
Use the
-i
option to confirm each file before deleting itrm -i filename(s)
Use the -f
(force) optionrm -f filename(s)
3. To remove non-empty directories and all the files without being prompted use the
r
(recursive) and-f
optionsrm -rf dirname