Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by IBM Team. If you also belong to the team, you can get access from here

IBM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

IBM Linux and Unix System Administrator Interview Questions, Process, and Tips

Updated 31 Aug 2022

IBM Linux and Unix System Administrator Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - HR 

(31 Questions)

  • Q1. How recover a user file deleted or file /etc/passwd ?
  • Ans. 

    To recover a deleted user file or /etc/passwd, restore from backup or use data recovery tools.

    • Check if a backup of the file exists and restore it

    • If no backup is available, use data recovery tools like extundelete or scalpel

    • Stop writing to the disk immediately to prevent overwriting the deleted file

    • Consult with a professional if necessary

  • Answered by AI
  • Q2. How to switch a user ?
  • Ans. 

    To switch a user in Linux or Unix, use the 'su' command followed by the username.

    • Open the terminal

    • Type 'su' followed by the username of the user you want to switch to

    • Enter the password of the user when prompted

    • You will be switched to the specified user

  • Answered by AI
  • Q3. How to check a user password status for any users ?
  • Ans. 

    To check a user password status, use the 'passwd' command with the '-S' option followed by the username.

    • Open the terminal or command prompt.

    • Type 'passwd -S ' and press Enter.

    • The password status will be displayed, indicating if the password is locked, expired, or active.

  • Answered by AI
  • Q4. How to secure our system security user mangement ?
  • Ans. 

    To secure system security user management, follow best practices such as strong passwords, regular audits, limited privileges, and multi-factor authentication.

    • Enforce strong password policies

    • Regularly audit user accounts and access permissions

    • Implement least privilege principle

    • Enable multi-factor authentication

    • Disable unnecessary user accounts

    • Regularly update and patch the system

    • Implement intrusion detection and preven...

  • Answered by AI
  • Q5. If one file move to another directory then what will change file name or other anything else ?
  • Ans. Inodes number change of file , not change name or anything else . we can check it by #stat file name command .
  • Answered Anonymously
  • Q6. How we can check groups lists & assinged users to them ?
  • Ans. 

    To check group lists and assigned users, we can use the 'getent' command in Linux and Unix systems.

    • Use the 'getent group' command to list all the groups and their details

    • To check the users assigned to a specific group, use 'getent group '

    • The output will display the group name, group ID, and a list of users assigned to the group

  • Answered by AI
  • Q7. Can we modify user password and name ?
  • Ans. 

    Yes, as a Linux and Unix System Administrator, you can modify user passwords and names.

    • To modify a user's password, you can use the 'passwd' command followed by the username.

    • To modify a user's name, you can use the 'usermod' command followed by the username and the '-l' option to change the login name.

    • Make sure to have the necessary permissions to modify user information.

  • Answered by AI
  • Q8. How to check that all port are connected to your computers and power supply or system configuration ?
  • Ans. 

    To check all connected ports and power supply, use commands like lsusb, lspci, lshw, and check power cables and system configuration.

    • Use lsusb command to list USB devices connected to the computer

    • Use lspci command to list PCI devices connected to the computer

    • Use lshw command to list detailed hardware information

    • Physically check power cables and connections

    • Verify system configuration settings

  • Answered by AI
  • Q9. How we can putty frienly session ?
  • Q10. How to know that in which directory we are sitting presently ?
  • Ans. 

    To know the current directory in Linux/Unix, use the 'pwd' command.

    • Type 'pwd' in the terminal and press enter.

    • The output will show the full path of the current directory.

    • Alternatively, you can use 'echo $PWD' to display the current directory path.

    • The command 'ls' can also be used to list the contents of the current directory.

  • Answered by AI
  • Q11. #pwd for present working direcory.
  • Ans. 

    The command to display the present working directory in Linux/Unix is 'pwd'.

    • The 'pwd' command stands for 'print working directory'.

    • It displays the absolute path of the current working directory.

    • The output of 'pwd' does not contain any trailing slashes.

  • Answered by AI
  • Q12. How we scan a LUN & check the wwn number ?
  • Ans. 

    To scan a LUN and check the wwn number, use the 'multipath' command.

    • Run 'multipath -ll' to list all the available LUNs and their wwn numbers.

    • To scan for new LUNs, run 'echo '- - -' > /sys/class/scsi_host/hostX/scan' (replace X with the appropriate host number).

    • Use 'multipath -v3' for verbose output and troubleshooting.

    • Ensure that the necessary drivers and modules are loaded for the storage device.

    • Check the system logs ...

  • Answered by AI
  • Q13. #devfsadm & #fcinfo hba-port are used for this.
  • Q14. How to check data set & mount point information in human readable format ?
  • Ans. 

    To check data set & mount point info in human readable format, use the 'df' command.

    • Open the terminal and type 'df -h' to display the information in human-readable format.

    • The 'df' command shows the file system disk space usage, including the mount point and file system type.

    • The '-h' option displays the sizes in a human-readable format, such as 'K' for kilobytes, 'M' for megabytes, and 'G' for gigabytes.

    • You can also use...

  • Answered by AI
  • Q15. By using #df -h command . meaning disk free.
  • Q16. How can we create a mirror pool & what does it require for ?
  • Ans. 

    A mirror pool is a storage configuration that duplicates data across multiple drives for redundancy and improved performance.

    • A mirror pool is created using software RAID (Redundant Array of Independent Disks) technology.

    • It requires at least two drives to create a mirror pool.

    • The data written to one drive is automatically duplicated to the other drive in real-time.

    • If one drive fails, the data can still be accessed from ...

  • Answered by AI
  • Q17. How to destroy a pool ?
  • Ans. 

    To destroy a pool in Linux or Unix, use the 'zpool destroy' command.

    • Open the terminal or command prompt.

    • Use the 'zpool destroy' command followed by the name of the pool to be destroyed.

    • Confirm the destruction by typing 'y' or 'yes' when prompted.

    • The pool and all its associated data will be permanently deleted.

  • Answered by AI
  • Q18. How to replace a disk from pool ?
  • Ans. 

    To replace a disk from a pool, you need to remove the faulty disk and add a new disk to the pool.

    • Identify the faulty disk using disk monitoring tools or error messages

    • Remove the faulty disk from the pool using the appropriate command or tool

    • Physically replace the faulty disk with a new disk

    • Add the new disk to the pool using the appropriate command or tool

    • Verify the disk replacement and ensure data integrity

  • Answered by AI
  • Q19. How we check all zpool status ?
  • Ans. 

    To check all zpool status, use the 'zpool status' command.

    • Open the terminal or command prompt.

    • Type 'zpool status' and press Enter.

    • The command will display the status of all zpools on the system.

    • You can also use additional options like '-v' for more detailed information.

  • Answered by AI
  • Q20. How can we check all disk information ?
  • Ans. 

    To check all disk information in Linux and Unix systems, you can use the 'df' command.

    • Use the 'df' command to display disk space usage information

    • Add the '-h' option to display sizes in a more human-readable format

    • Use the '-T' option to display the filesystem type

    • Use the '-i' option to display inode information

    • Combine options as needed to get the desired output

  • Answered by AI
  • Q21. How we can check all information destroy pool & get back them ?
  • Ans. 

    To check all information destroy pool & get back them, we can use ZFS snapshots and clones.

    • ZFS snapshots and clones can be used to recover data from a destroyed pool.

    • Snapshots capture the state of the pool at a specific point in time.

    • Clones can be created from snapshots and mounted as a separate file system.

    • Data can be copied from the clone to the new pool.

    • It is important to regularly create snapshots to ensure data ca

  • Answered by AI
  • Q22. For this we require 2 commands , first #zpool import -D to get all information about destroys pools and to get back them we use #zpool import -D pool name .
  • Q23. How can we attach &detach disk from a normal and mirror pool ?
  • Ans. 

    To attach & detach disk from normal and mirror pool, use zpool attach and zpool detach commands.

    • To attach a disk to a normal pool, use 'zpool attach poolname existing_device new_device'

    • To detach a disk from a normal pool, use 'zpool detach poolname device'

    • To attach a disk to a mirror pool, use 'zpool attach poolname existing_device mirror_device'

    • To detach a disk from a mirror pool, use 'zpool detach poolname mirror_dev

  • Answered by AI
  • Q24. #zpool attach poolname old disk new disk & # zpool detach poolname diskid both command are required for particular action.
  • Q25. Tell all process of patch management by stepwise ?
  • Ans. 

    Patch management process involves identifying, testing, deploying, and verifying patches.

    • Identify vulnerabilities and available patches

    • Test patches in a non-production environment

    • Deploy patches to production systems

    • Verify successful patch installation and functionality

    • Monitor for any issues or new vulnerabilities

    • Repeat the process regularly

    • Use automation tools for efficiency

  • Answered by AI
  • Q26. First of all we require two pkg download from oracle support or Linux support - base repo and SRU in our system & we will require a software winscp for copy pkg desktop to server . we will open winscp and...
  • Q27. How many run level are in Saloris and Linux
  • Ans. 

    Saloris does not exist. Linux has 7 run levels.

    • Saloris is not a known operating system

    • Linux has 7 run levels numbered from 0 to 6

    • Each run level has a specific set of services and daemons that are started or stopped

    • Run level 0 is used for system halt

    • Run level 1 is used for single user mode

    • Run level 2 is used for multi-user mode without networking

    • Run level 3 is used for multi-user mode with networking

    • Run level 4 is not u...

  • Answered by AI
  • Q28. In Saloris 5 & Linux 6 have run level.
  • Q29. How we reboot system ?
  • Ans. 

    To reboot a system, use the 'reboot' command or the 'shutdown' command with the '-r' option.

    • Use the 'reboot' command to immediately reboot the system

    • Use the 'shutdown -r' command to schedule a reboot at a specific time

    • Ensure you have the necessary permissions to reboot the system

  • Answered by AI
  • Q30. How to activate Boot Environment back up ?
  • Ans. 

    To activate Boot Environment back up, use the beadm command.

    • Use the beadm command with the activate option followed by the name of the Boot Environment.

    • For example, to activate the Boot Environment named 'BE1', use the command 'beadm activate BE1'.

    • This will make the Boot Environment the default one at the next system reboot.

  • Answered by AI
  • Q31. We use for this action #beadm activate bename

Interview Preparation Tips

Topics to prepare for IBM Linux and Unix System Administrator interview:
  • LDOM
  • zfs snapshot
  • crontab
  • Service management
  • Process Management
  • NFS
Interview preparation tips for other job seekers - best experience i have done with this particular session . i covered all necessary question in this ambition box and more topic have remained that are useful like

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Feb 2016.

Interview Questionnaire 

1 Question

  • Q1. Enter a question

Interview Preparation Tips

Round: Resume Shortlist
Experience: Tell in detail what all happened during this round
Tips: Provide tips specifically for this round

Round: Technical Interview
Experience: Tell in detail what all happened during this round
Tips: Provide tips specifically for this round

Interview Preparation Tips

Round: Test
Experience: CAT type questions were asked.
Duration: 75 minutes

Round: HR Interview
Experience: It was a nice experience.Basic simple questions were asked, like- family background, achievement,s extracurricular activities, projects, etc.
Tips: Be calm and confident.

College Name: NIT WARANGAL

Interview Questionnaire 

8 Questions

  • Q1. Explain ur Training project
  • Ans. 

    My training project involved designing and implementing a network infrastructure for a medium-sized company.

    • Researched and analyzed the company's requirements for network connectivity and security.

    • Designed a network architecture that included routers, switches, firewalls, and VPNs.

    • Configured and tested the network devices to ensure proper functionality.

    • Implemented security measures such as access control lists and intr...

  • Answered by AI
  • Q2. How the apps in the mobile works..??
  • Ans. 

    Mobile apps work by running code on the device to perform specific tasks and interact with the user.

    • Mobile apps are developed using programming languages like Java, Swift, or Kotlin.

    • Apps are installed on the device and run locally, utilizing the device's resources.

    • They can access device features like camera, GPS, and sensors.

    • Apps communicate with servers or APIs to fetch data or perform actions.

    • User interactions trigge...

  • Answered by AI
  • Q3. What is Big Data..??
  • Ans. 

    Big Data refers to large and complex sets of data that cannot be easily managed or processed using traditional methods.

    • Big Data is characterized by the 3Vs: Volume, Velocity, and Variety.

    • Volume refers to the vast amount of data generated and collected from various sources.

    • Velocity refers to the speed at which data is generated and needs to be processed in real-time.

    • Variety refers to the different types and formats of d...

  • Answered by AI
  • Q4. What do u mean by SMAC..??
  • Ans. 

    SMAC stands for Social, Mobile, Analytics, and Cloud.

    • SMAC is a combination of four technologies that are transforming businesses and industries.

    • Social refers to the use of social media platforms for communication and collaboration.

    • Mobile refers to the use of mobile devices and applications for accessing information and services.

    • Analytics refers to the use of data analysis tools and techniques to gain insights and make ...

  • Answered by AI
  • Q5. Tell me about urself
  • Ans. 

    I am a system engineer with expertise in designing and maintaining complex computer systems.

    • Experienced in configuring and troubleshooting network devices

    • Proficient in scripting languages like Python and Bash

    • Skilled in virtualization technologies such as VMware and Hyper-V

    • Knowledgeable in cloud computing platforms like AWS and Azure

    • Familiar with ITIL best practices for service management

  • Answered by AI
  • Q6. What r ur hobies and interests..??
  • Q7. What r ur strengths..??
  • Q8. Why u want to join our company..??

Interview Preparation Tips

Round: Test
Experience: It was a challenging but exciting experience for me..!! I felt a lil bit shortage of time to complete the test.
Tips: Keep last 5 mins for guessing the answer and marking it.
Duration: 90 minutes
Total Questions: 74

Round: Technical Interview
Experience: It gave me a wonderful platform to speak about my project..!!
I cudn't answer many of the questions..!!
Tips: Tell ur answer watever u know confidently..!!
Answer the questions upto the point.
Don't let ur answers puzzle u.

Round: HR Interview
Experience: I spoke very confidently..!!
Tips: Improve ur communication skills.
Tell ur answers after feeling it from ur heart.
Watever u say, say it confidently.
Don't boast urself..don't bluff dere.
Always smile in between.

Skill Tips: learn new words daily and put a habbit of public speaking.
Skills: Communication Skills
College Name: KIIT UNIVERSITY

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: The verbal section was easy.  Analytical was very easy and I personally did not prepare much for it.
Tips: There is no need to learn any words just have to be grammatically strong.You will find it easy if you can understand english movies.
Duration: 80 minutes

Round: HR Interview
Experience: The interviewer was pretty informal and friendly and though i was a bit tensed before entering the room, once i went inside my nerves calmed down and the interview went well. It was pretty simple. There were about 6 different interviewers, all of them were very experienced. They asked standard questions like tell me about yourself, strengths and weakness,  asked a few puzzles.
Tips: Just prepare for standard HR questions and do not get tensed. Be fluent during the interview

College Name: NIT WARANGAL

Interview Preparation Tips

Round: Test
Experience: In verbal, paragraphs, grammatical questions etc were asked. Reasoning was quite simple when compared to verbal.Normal and easy Quantitative questions were asked.
Tips: Keep your cool all through the interview. Be precise and don't give the the impression that you are missing the emphasis on what you are speaking.
Duration: 80 minutes

Round: HR Interview
Experience: Interview was pretty cool. I was interviewed by an experienced person and he made me feel comfortable all through.Type of questions asked are like: Tell me about your extra curricular activities from your childhood, Tell me something about your leadership qualities. Situational questions were also asked which were simple.

College Name: NIT WARANGAL

Interview Preparation Tips

Round: Test
Experience: In the verbal section, Reading Comprehensions and correction of sentences were given.Quant was easy.Reasoning was a little hard but it can be done easily and pretty fast if you have practice.
Tips: For the written test try to practice some reasoning questions which are available in some cat books..they wont be that tough in the written test but you will feel confident if you solve them.
Duration: 70 minutes

Round: HR Interview
Experience: HR interview was very simple. It was only for some 5 to 10 mins.They just asked me to tell about my family background & my siblings.Then i was asked about my future plans. The interviewer asked me if i wanted to knowanything about the company from him..And one question was asked about what will i do if the project i am working onsuddenly crashes.Then he checked my resume and asked about my CGPA.
Tips: Be confident when you face a HR interview. And do answer all the questions they ask, do not hesitate.Be fluent in speaking

College Name: NIT WARANGAL

Interview Preparation Tips

Round: Test
Experience: Section 1 had 30 mins quantitative aptitude and 20 mins reasoning questions.Questions based on pie charts,ratio and proportion,percentage problems etc were asked. They were pretty easy only.Section 2 had 20 mins english. Here, synonyms and antonyms and comprehension passages were asked.
Tips: You can practice puzzles from shakuntala devi and quantitative aptitude from RS Agarwal.As for the Verbal part, GRE wordlists from Barrons will be of great use.Time management is very important.
Duration: 70 minutes

Round: Technical Interview
Experience: Very basic questions were asked from Software engineering , like what is SDLC and PERT and all and more questions were from final year project only.A Situational question was asked and he asked me to give an algorithm to solve it logically.

Round: HR Interview
Experience: The interview was for about 20 mins, and it was ultra lite. The person who took my interview was extremely friendly and we had a little talk about ourselves initially and he repeated the same question thrice when i told him I did not understand.
Here, he asked about my background and from which school i had done my 10th and 12th and asked me to talk about national integrity. I just had to talk about that topic for 2 mins. Some puzzles and particular semester's SGPA and CGPA also were asked. And usual questions about hobbies and why do you want to join Infosys. All that he expected during the interview was straight forward answers.
Tips: Just be confident(not over confident) when you answer the questions. Look into the eyes of the Interviewer when you answer.

College Name: NIT WARANGAL

Interview Questionnaire 

8 Questions

  • Q1. Tell me about yourself
  • Q2. Details regarding my project work
  • Q3. Give an instance that showed your leadership qualities
  • Q4. An example for a very interesting thing that happened in your life
  • Q5. Being a chemical engineer why you want to shift to software side
  • Ans. 

    I have always been passionate about technology and software development, and I believe my skills as a chemical engineer can be applied effectively in the software side.

    • I have a strong foundation in problem-solving and analytical skills from my background in chemical engineering.

    • I have experience working with complex systems and processes, which can be beneficial in software development.

    • I have a keen interest in learnin...

  • Answered by AI
  • Q6. Do you really think your parents will be fine with you working in software field?
  • Ans. 

    Yes

    • My parents have always been supportive of my career choices

    • They understand the demand and growth opportunities in the software field

    • They have seen my passion for technology and believe in my abilities

    • They value my happiness and fulfillment in my chosen profession

  • Answered by AI
  • Q7. Did you try to interact with any of the company employees to know more about the company?
  • Q8. What have you heard about the work culture in infosys?

Interview Preparation Tips

Round: Test
Experience: The first section consisted of 30 minutes of quantitative questions based on R S Aggarwal book. More weightage was given to problems on probability and data interpretation. 
The second section was a verbal test that mainly consisted of comprehension passages, grammatical arrangement of jumbled sentences etc. The test had no negative marking so one can confidently attempt all
questions.
Tips: The Quantitative section is time consuming so good amount of practice
is required.
Please work out as many questions from the R S Aggarwal book. That will definitely boost up your confidence.
Duration: 150 minutes

Round: HR Interview
Experience: The interview was very simple. The panel consisted of only one member. The interview lasted for 15 min. The only thing that was tested in the interview was your communication skills. There was nothing technical being asked.
Tips: Prepare the answers for the common HR questions like tell me about your self, why do you wanna join this company,  etc
Try to answer all questions confidently without pause or break. Do not get tensed. Make sure that you maintain eye contact with the panel.From my experience most of the companies very seriously go through your bio data. So make sure you include only that is necessary and sufficient or else it might turn up to be a disadvantage.

College Name: NIT WARANGAL

Interview Preparation Tips

Round: Test
Experience: The questions in logical and English were easy. Some of the questions in logical were good. The English part was okay. For people preparing for CAT, this test was comparatively easier.
Duration: 75 minutes

Round: HR Interview
Experience: Initially i was tensed but  everything went smoothly. Once i got into conversation with the interviewer,  all my tension vanished. 
The Interview went for 20 minutes. First he asked me about myself and my hobbies. Then asked me that how i could balance my academic and extra curricular activities. Then he gave me two situations and asked me how would I react in such situations. The first 1 was- Suppose u r cultural head of your college and you have to organise a cultural event and have to invite the heads of other NIT's, how will u start and go about it.The second situation was- suppose you are the captain of a basket ball team and you have to play an important match on Sunday and you have your end exams starting on Monday, then what will u do?? Will you choose not to play  or decide to forego your exam? In the end he asked me if I have any questions for him.

General Tips: You should know every nook and corner of your resume.
College Name: NIT WARANGAL
Contribute & help others!
anonymous
You can choose to be anonymous

IBM Interview FAQs

How many rounds are there in IBM Linux and Unix System Administrator interview?
IBM interview process usually has 1 rounds. The most common rounds in the IBM interview process are HR.
What are the top questions asked in IBM Linux and Unix System Administrator interview?

Some of the top questions asked at the IBM Linux and Unix System Administrator interview -

  1. How to check that all port are connected to your computers and power supply or ...read more
  2. How to check data set & mount point information in human readable forma...read more
  3. How recover a user file deleted or file /etc/passw...read more

Recently Viewed

INTERVIEWS

Schlumberger

No Interviews

INTERVIEWS

Cognizant

No Interviews

SALARIES

Concentrix Corporation

INTERVIEWS

Accenture

No Interviews

INTERVIEWS

Volvo Trucks

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Accenture

No Interviews

JOBS

Reliance Retail

No Jobs

JOBS

Westway Electronics

No Jobs

JOBS

Ujjivan Financial Services

No Jobs

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
IBM Linux and Unix System Administrator Salary
based on 5 salaries
Lock Unlock
₹3 L/yr - ₹6.2 L/yr
22% less than the average Linux and Unix System Administrator Salary in India
View more details

IBM Linux and Unix System Administrator Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Application Developer
11.8k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
5.5k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Advisory System Analyst
5.2k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
4.8k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
4.5k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview