1 How to check and verify the status of the bond interface?
Using the following command, we can check which mode is enabled and what LAN cards are used in this bond:
In this example, we have a single bond interface. However, we can have multiple bond interfaces like bond1, bond2, and so on.
2 What command can you use to make a tape archive file of /home directory and send it to the /dev/tape device?
The command used here is:
The -xvf option is used to extract files from an archive.
Expert Linux professionals are in high demand. Take this Linux Course in Toronto and join the big league!
4 Is there any relation between the modprobe.conf file and network devices?
Yes, this file assigns a kernel module to each network device.
Example:
Linux Shell Scripting Interview Questions And Answers
1) How to create simple shell scripts in Linux?
ANS: Make sure that the file begins with “#!/bin/bash” before any command lines. Make it executable : chmod +x
2) Which command to be used to check the shell being used?
ANS: echo $SHELL echo $0
Like-wise :
#echo $? …..this shows the exit status of the most previous process command ran in shell.
#echo $$ ….this shows current shell ID (when run inside a script this would print the PID assigned to the shell)
….this prints the arguments passed when called for execution.
#echo $# …..this would show up total number of arguments passed.
#echo $! …..this would report PID of previous background process.
To check these, run a small script as shown below : #!/bin/bash echo -e “Print Current shell ID ($$): $$” echo -e “Arguments passed ([email protected]): [email protected]” echo -e “No of arguments passed ($#): $#” echo -e “This also prints arguments passed ($*): $*” ………..example: [[email protected] tmp]# ./test.sh 1 2 3 Print Current shell ID ($$): 107199 Arguments passed ([email protected]): 1 2 3 No of arguments passed ($#): 3 This also prints arguments passed ($*): 1 2 3
What are the three standard streams in Linux?
In Linux, standard streams are channel communication of input and output between a program and its environment. In the Linux system, input and output are spread among three standard streams which are:
About Accenture
Accenture is one of the Fortune 500 companies founded in 1989 and is considered one of the top IT companies. Now as a part of Accenture one needs to know that they strictly stick to their core values. Every employee needs to know and abide by their values. Added to that some of the other reasons why one can choose their career with Accenture because of the brand name, work-life balance, work environment and the quality of work. If you are a fresher starting your career with Accenture, then it is an added advantage as this service based company will shape your career in a wonderful way. So what exactly are the values one needs to know before applying for Accenture?
Let’s go ahead in this Accenture interview questions blog, and understand Accenture Core Values
How to reduce or shrink the size of the LVM partition?
Below are the logical steps to reduce the size of the LVM partition:
This way, we can reduce the size of the LVM partition and fix the size of the file system to 10 GB.