Add office photos
Employer?
Claim Account for FREE

Experis IT

3.0
based on 575 Reviews
Filter interviews by

10+ Maruti Suzuki Interview Questions and Answers

Updated 5 Feb 2024

Q1. User is not able to login, How can troubleshoot this

Ans.

To troubleshoot a user not able to login, check for account lockouts, password issues, network connectivity, and system errors.

  • Check if the user's account is locked or disabled

  • Verify if the user's password has expired or needs to be reset

  • Ensure network connectivity is working properly

  • Check for any system errors or issues that may prevent login

  • Review system logs for any relevant error messages

  • Confirm if the user is using the correct login credentials

Add your answer

Q2. Server is not able to login, how to troubleshoot this

Ans.

To troubleshoot a server not able to login, check network connectivity, verify credentials, and review system logs.

  • Check network connectivity to ensure the server is reachable

  • Verify the correctness of login credentials

  • Review system logs for any error messages or indications of login failures

  • Restart the server if necessary

  • Check for any recent system updates or changes that may have caused the login issue

Add your answer

Q3. You know about port , ssh, http, https, ftp, nfs, telnet , samba,

Ans.

These are common network protocols used for communication and file transfer.

  • SSH (Secure Shell) is a secure protocol used for remote login and secure file transfer.

  • HTTP (Hypertext Transfer Protocol) is used for transmitting web pages and other resources over the internet.

  • HTTPS (HTTP Secure) is the secure version of HTTP, encrypted with SSL/TLS.

  • FTP (File Transfer Protocol) is used for transferring files between a client and a server.

  • NFS (Network File System) allows remote file ...read more

Add your answer

Q4. Https is not working, how to troubleshoot this.

Ans.

To troubleshoot HTTPS not working, check certificate validity, firewall settings, and web server configuration.

  • Check if the SSL/TLS certificate is valid and properly installed

  • Verify if the web server is configured to listen on the correct HTTPS port (usually 443)

  • Ensure that the firewall allows incoming connections on the HTTPS port

  • Check if the SSL/TLS protocols and cipher suites are correctly configured

  • Inspect the web server logs for any error messages related to HTTPS

  • Test HT...read more

Add your answer
Discover Maruti Suzuki interview dos and don'ts from real experiences

Q5. You are not able to login through putty, troubleshooting

Ans.

Troubleshooting steps for not being able to login through putty

  • Check network connectivity

  • Verify correct IP address and port number

  • Ensure SSH service is running on the server

  • Check firewall settings

  • Verify correct username and password

  • Check if the server is reachable and not down

Add your answer

Q6. How to rollback Patches trough Yum

Ans.

To rollback patches through Yum, use the yum history command and the yum history undo command.

  • Use the 'yum history' command to view the history of installed packages and patches.

  • Identify the transaction ID of the patch you want to rollback.

  • Use the 'yum history undo ' command to rollback the patch.

  • Confirm the rollback by reviewing the output and checking the system's package status.

Add your answer
Are these interview questions helpful?

Q7. How to take backup via tar utility

Ans.

Tar utility is used to create backups by compressing files and directories.

  • To create a backup using tar, use the 'tar' command followed by the appropriate options and arguments.

  • Specify the files or directories to be included in the backup.

  • Use the '-cvf' options to create a new tar archive file.

  • Specify the name of the archive file to be created.

  • To compress the backup, use the '-z' option for gzip compression or '-j' option for bzip2 compression.

  • To extract files from a tar back...read more

Add your answer

Q8. You know scp what is use for linux.

Ans.

scp is a command-line tool used for securely transferring files between a local and remote Linux system.

  • scp stands for secure copy.

  • It uses SSH protocol for secure file transfer.

  • It can be used to copy files between local and remote systems, or between two remote systems.

  • Syntax: scp [options] [source] [destination]

  • Example: scp file.txt user@remote:/path/to/destination

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. How to dics scan, create LVM

Ans.

To disk scan, use tools like fsck or badblocks. To create LVM, use pvcreate, vgcreate, and lvcreate commands.

  • To disk scan, use fsck command to check and repair file system errors.

  • To scan for bad blocks on a disk, use badblocks command.

  • To create LVM, first initialize physical volumes (pvcreate), then create volume groups (vgcreate), and finally create logical volumes (lvcreate).

  • Example: fsck /dev/sda1

  • Example: badblocks /dev/sdb

  • Example: pvcreate /dev/sdc

  • Example: vgcreate myvg /...read more

Add your answer

Q10. How to create bonding in linux

Ans.

Bonding in Linux is a technique to combine multiple network interfaces into a single virtual interface for increased bandwidth and fault tolerance.

  • Install the bonding driver module

  • Configure the bonding interface in the network configuration file

  • Specify the bonding mode and options

  • Assign the physical interfaces to the bonding interface

  • Restart the network service to apply the changes

Add your answer

Q11. How to run Cronjob for Process

Ans.

To run a cronjob for a process, use the crontab command to create a cron job entry.

  • Use the crontab command to edit the cron table

  • Specify the schedule using the cron syntax

  • Specify the command or script to be executed

  • Save and exit the cron table to schedule the cron job

Add your answer

Q12. You know about scripting , bash or sh

Ans.

Yes, I am familiar with scripting in bash and sh.

  • I have experience writing scripts in bash and sh.

  • I am comfortable with using variables, loops, conditionals, and functions in bash and sh scripts.

  • I have used bash and sh scripts for automating tasks, managing system configurations, and troubleshooting.

  • I am familiar with common commands and utilities in bash and sh, such as grep, sed, awk, and find.

  • I have written scripts to automate system administration tasks like log rotation,...read more

Add your answer

Q13. Create swap for linux server

Ans.

To create swap for a Linux server, use the 'mkswap' command to create a swap file or partition and then activate it using the 'swapon' command.

  • Use 'dd' command to create a swap file with desired size: 'dd if=/dev/zero of=/path/to/swapfile bs=1G count=4'

  • Set the correct permissions for the swap file: 'chmod 600 /path/to/swapfile'

  • Create swap space on the file: 'mkswap /path/to/swapfile'

  • Activate the swap space: 'swapon /path/to/swapfile'

  • Make the swap space permanent by adding an ...read more

Add your answer

Q14. Difference between yum & rpm.

Ans.

yum is a package manager that resolves dependencies and installs packages from repositories, while rpm is a low-level package manager that directly installs packages.

  • yum is a high-level package manager that uses rpm as its underlying package management system.

  • yum can automatically resolve dependencies and install packages from repositories, while rpm requires manual dependency resolution.

  • yum can also update packages and manage repositories, while rpm only installs and removes...read more

Add your answer

Q15. Difference between udp & tcp

Ans.

UDP is a connectionless protocol that provides fast, but unreliable communication. TCP is a connection-oriented protocol that ensures reliable communication.

  • UDP stands for User Datagram Protocol, while TCP stands for Transmission Control Protocol.

  • UDP is faster than TCP because it does not establish a connection before sending data.

  • UDP does not guarantee delivery of packets, while TCP ensures reliable delivery.

  • TCP uses a three-way handshake to establish a connection between th...read more

Add your answer

Q16. Disc LVM partion for LVM

Ans.

Disc LVM partitioning allows for flexible management of storage space by creating logical volumes on physical disks.

  • LVM stands for Logical Volume Manager.

  • It allows for dynamic allocation and resizing of storage space.

  • LVM partitions are created by combining physical volumes (disks) into volume groups, and then creating logical volumes within those groups.

  • Logical volumes can be resized, moved, or even span multiple physical disks.

  • LVM provides features like snapshots, mirroring,...read more

Add your answer

Q17. Network layers for network

Ans.

The network layers for network are a hierarchical structure that defines the communication process between devices.

  • The network layers are a way to organize and standardize the communication process in a network.

  • There are several models that define the network layers, such as the OSI model and the TCP/IP model.

  • Each layer has a specific function and interacts with the layers above and below it.

  • The layers provide abstraction, allowing different technologies and protocols to work...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Maruti Suzuki

based on 1 interviews
Interview experience
5.0
Excellent
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top System Administrator Interview Questions from Similar Companies

3.7
 • 40 Interview Questions
3.7
 • 20 Interview Questions
4.4
 • 10 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter