Random Flashcards
Tell me about yourself?
I have been working in customer service for many years and currently for TSA. I have a strong ethic of work. I not afraid of a new environment , I will handle problems even though Im not familiar I will look for a solution.
Mention three tickets/incidences you recently solved.
Can you explain any three playbooks you created?
What is your day to day?
If you have any conflict with one of your colleague. How would you handle it?
Why you are the best candidate for this position?
Because my experience and my knowledge can contribute in your company. Also I have strong ethic of work , responsible, team player and on-time.
If I offer you this position what would you bringing in new environment?
What is your patching process?
After patching System doesn’t come up. List some of the steps you’d take to revive it?
How can you go into Single User and its purpose?
Init 1 or during boot stop the process and press “e” then add systemd.unit=emergency.target Emergency mode basically for maintenance.
Describe Linux Boot Process
BIOS - Power on Self-Test. Performs some system integrity checks. Searches, loads, and executes the boot loader program.
MBR - Master Boot Record. It is located in the 1st sector of the bootable disk. MBR is 512 bytes in size. It contains information about GRUB. So, in simple terms MBR loads and executes the GRUB boot loader.
GRUB - Grand Unified Bootloader. Loads the default kernel image as specified in the grub configuration file. Grub configuration file is /boot/grub/grub.conf. It contains kernel and initrd image. So, in simple terms GRUB just loads and executes Kernel and initrd images
Kernel - Mounts the root file system as specified in the “root=” in grub.conf. Kernel executes the /sbin/init program. Initrd is used by kernel as temporary root file system until kernel is booted and the real root file system is mounted.
Init - Looks at /etc/inittab to decide default run level.
Run Level - Executes run level programs from the default run level
What are different run levels in Linux?
0= shutdown/emergency mode
1= single user
2= multi user w/no network
3= multi user w/network no /GUI
4= not used or undefiened
5= multi user w/network and w/GUI
6=reboot
How can you perform a Filesystem Consistency check on a partition/hard drive?
Run the fsck utility on the partition, specifying the filesystem type and the device name.
How do you force unmount a hung nfs share?
you can use the umount command with the -f or –force flag.
umount -f /path/to/nfs/share
How to go into Rescue mode.
reboot the server
b. stop the grub menu by hitting any key
c. select the kernel
d. press e to edit kernel cmdline entry
e. go to the end of line starting with Linux16 and type init=/bin/bash
f. hit ctrl+x
g. mount |grep root
h. mount -o remount,rw /
i. passwd
j. touch /.autorelabel
k. /sbin/reboot -f