Which Vim command will save the current file without exiting?
Answer : D
The command to save a file in Vim is:w.
To save the file without exiting the editor, switch back to normal mode by pressingEsc, type:wand hitEnter.
https://linuxize.com/post/how-to-save-file-in-vim-quit-editor/
You are working at a terminal window of a server at the office, but you want to continue this work by remotely accessing the terminal session from your home office. Which command will you need to use to accomplish this?
In the scripts subdirectory under your home directory there is a file named tstparse.sh. You want to set an Extended ACL so thejsmith user has all permissions to just this file. Which command will accomplish this?
Which commands and options will display the routing table? (Choose two)
Which statement is true regarding VFS?
Answer : C
The statement that is true regarding VFS is that VFS is an abstraction layer in the kernel that provides the same interface to applications and users regardless of which file system format is used. VFS stands for Virtual File System or Virtual File System Switch. It allows different types of file systems (such as ext4, xfs, nfs, etc.) to be accessed through a common set of system calls and functions. VFS also provides caching and buffering mechanisms to improve performance and reliability. Reference: https://documentation.suse.com/sles/15-SP3/html/SLES-all/sec-vfs.html
Which directory is traditionally used as a catch all to mount local and/or remote file systems?
What is the first file executed by a bash login shell?
Answer : A
https://www.gnu.org/software/bash/manual/html_node/Bash-Startup-Files.html
When Bash is invoked as an interactive login shell, or as a non-interactive shell with the--loginoption, it first reads and executes commands from the file/etc/profile, if that file exists. After reading that file, it looks for~/.bash_profile,~/.bash_login, and~/.profile, in that order, and reads and executes commands from the first one that exists and is readable. The--noprofileoption may be used when the shell is started to inhibit this behavior.