Q1. What is Linux?

Linux is an operating system which is based on UNIX, and was first introduced by Linus Torvalds. It is based on the Linux Kernel, and can run on different hardware platforms manufactured by Intel, MIPS, HP, IBM, SPARC and Motorola. Another popular element in Linux is its mascot, a penguin figure named Tux.

Q2. What is the difference between UNIX and LINUX?

Unix originally began as a propriety operating system from Bell Laboratories, which later on spawned into different commercial versions. On the other hand, Linux is free, open source and intended as a non-propriety operating system for the masses.

Q3. What is BASH?

BASH is short for Bourne Again SHell. It was written by Steve Bourne as a replacement to the original Bourne Shell (represented by /bin/sh). It combines all the features from the original version of Bourne Shell, plus additional functions to make it easier and more convenient to use. It has since been adapted as the default shell for most systems running Linux.

Q4. What is Linux Kernel?

The Linux Kernel is a low-level systems software whose main role is to manage hardware resources for the user. It is also used to provide an interface for user-level interaction.

Q5. What is LILO?

LILO is a boot loader for Linux. It is used mainly to load the Linux operating system into main memory so that it can begin its operations.

Q6. What is a swap space?

A swap space is a certain amount of space used by Linux to temporarily hold some programs that are running concurrently. This happens when RAM does not have enough memory to hold all programs that are executing.

Q7. What is the advantage of open source?

Open source allows you to distribute your software, including source codes freely to anyone who is interested. People would then be able to add features and even debug and correct errors that are in the source code. They can even make it run better, and then redistribute these enhanced source code freely again. This eventually benefits everyone in the community.

Q8. What are the basic components of Linux?

Just like any other typical operating system, Linux has all of these components: kernel, shells and GUIs, system utilities, and application program. What makes Linux advantageous over other operating system is that every aspect comes with additional features and all codes for these are downloadable for free.

Q9. Does it help for a Linux system to have multiple desktop environments installed?

In general, one desktop environment, like KDE or Gnome, is good enough to operate without issues. It’s all a matter of preference for the user, although the system allows switching from one environment to another. Some programs will work on one environment and not work on the other, so it could also be considered a factor in selecting which environment to use.

Q10. What is the basic difference between BASH and DOS?

The key differences between the BASH and DOS console lies in 3 areas:
– BASH commands are case sensitive while DOS commands are not;
– under BASH, / character is a directory separator and \ acts as an escape character. Under DOS, / serves as a command argument delimiter and \ is the directory separator
– DOS follows a convention in naming files, which is 8 character file name followed by a dot and 3 character for the extension. BASH follows no such convention.

Q11. What is the importance of the GNU project?

This so-called Free software movement allows several advantages, such as the freedom to run programs for any purpose and freedom to study and modify a program to your needs. It also allows you to redistribute copies of a software to other people, as well as freedom to improve software and have it released to the public.

Q12. Describe the root account.

The root account is like a systems administrator account, and allows you full control of the system. Here you can create and maintain user accounts, assigning different permissions for each account. It is the default account every time you install Linux.

Q13. What is CLI?

CLI is short for Command Line Interface. This interface allows user to type declarative commands to instruct the computer to perform operations. CLI offers an advantage in that there is greater flexibility. However, other users who are already accustom with using GUI find it difficult to remember commands including attributes that come with it.

Q14. What is GUI?

GUI, or Graphical User Interface, makes use of images and icons that users click and manipulate as a way of communicating with the computer. Instead of having to remember and type commands, the use of graphical elements makes it easier to interact with the system, as well as adding more attraction through images, icons and colors.

Q15. How do you open a command prompt when issuing a command?

To open the default shell (which is where the command prompt can be found), press Ctrl-Alt-F1. This will provide a command line interface (CLI) from which you can run commands as needed.

Q16. How can you find out how much memory Linux is using?

From a command shell, use the “concatenate” command: cat /proc/meminfo for memory usage information. You should see a line starting something like: Mem: 64655360, etc. This is the total memory Linux thinks it has available to use.

Q17. What is typical size for a swap partition under a Linux system?

The preferred size for a swap partition is twice the amount of physical memory available on the system. If this is not possible, then the minimum size should be the same as the amount of memory installed.

Q18. What are symbolic links?

Symbolic links act similarly to shortcuts in Windows. Such links point to programs, files or directories. It also allows you instant access to it without having to go directly to the entire pathname.

Q19. Does the Ctrl+Alt+Del key combination work on Linux?

Yes, it does. Just like Windows, you can use this key combination to perform a system restart. One difference is that you won’t be getting any confirmation message and therefore, reboot is immediate.

Q20. How do you refer to the parallel port where devices such as printers are connected?

Whereas under Windows you refer to the parallel port as the LPT port, under Linux you refer to it as /dev/lp . LPT1, LPT2 and LPT3 would therefore be referred to as /dev/lp0, /dev/lp1, or /dev/lp2 under Linux.

Q21. Are drives such as harddrive and floppy drives represented with drive letters?

No. In Linux, each drive and device has different designations. For example, floppy drives are referred to as /dev/fd0 and /dev/fd1. IDE/EIDE hard drives are referred to as /dev/hda, /dev/hdb, /dev/hdc, and so forth.

Q22. How do you change permissions under Linux?

Assuming you are the system administrator or the owner of a file or directory, you can grant permission using the chmod command. Use + symbol to add permission or – symbol to deny permission, along with any of the following letters: u (user), g (group), o (others), a (all), r (read), w (write) and x (execute). For example the command chmod go+rw FILE1.TXT grants read and write access to the file FILE1.TXT, which is assigned to groups and others.

Q23. In Linux, what names are assigned to the different serial ports?

Serial ports are identified as /dev/ttyS0 to /dev/ttyS7. These are the equivalent names of COM1 to COM8 in Windows.

Q24. How do you access partitions under Linux?

Linux assigns numbers at the end of the drive identifier. For example, if the first IDE hard drive had three primary partitions, they would be named/numbered, /dev/hda1, /dev/hda2 and /dev/hda3.

Q25. What are hard links?

Hard links point directly to the physical file on disk, and not on the path name. This means that if you rename or move the original file, the link will not break, since the link is for the file itself, not the path where the file is located.

Q26. What is the maximum length for a filename under Linux?

Any filename can have a maximum of 255 characters. This limit does not include the path name, so therefore the entire pathname and filename could well exceed 255 characters.

Q27. What are filenames that are preceded by a dot?

In general, filenames that are preceded by a dot are hidden files. These files can be configuration files that hold important data or setup info. Setting these files as hidden makes it less likely to be accidentally deleted.

Q28. Explain virtual desktop.

This serves as an alternative to minimizing and maximizing different windows on the current desktop. Using virtual desktops, each desktop is a clean slate where you can open one or more programs. Rather than minimizing/restoring all those programs as needed, you can simply shuffle between virtual desktops with programs intact in each one.

Q29. How do you share a program across different virtual desktops under Linux?

To share a program across different virtual desktops, in the upper left-hand corner of a program window look for an icon that looks like a pushpin. Pressing this button will “pin” that application in place, making it appear in all virtual desktops, in the same position onscreen.

Q30. What does a nameless (empty) directory represent?

This empty directory name serves as the nameless base of the Linux file system. This serves as an attachment for all other directories, files, drives and devices.

Q31. What is the pwd command?

The pwd command is short for print working directory command. It’s counterpart in DOS is the cd command, and is used to display the current location in the directory tree.

Q32. What are daemons?

Daemons are services that provide several functions that may not be available under the base operating system. Its main task is to listen for service request and at the same time to act on these requests. After the service is done, it is then disconnected and waits for further requests.

Q33. What are the kinds of permissions under Linux?

There are 3 kinds of permissions under Linux:
– Read: users may read the files or list the directory
– Write: users may write to the file of new files to the directory
– Execute: users may run the file or lookup a specific file within a directory

Q34. How do you switch from one desktop environment to another, such as switching from KDE to Gnome?

Assuming you have these two environments installed, just log out from the graphical interface. Then at the Log in screen, type your login ID and password and choose which session type you wish to load. This choice will remain your default until you change it to something else.

Q35. How does case sensitivity affect the way you use commands?

When we talk about case sensitivity, commands are considered identical only if every character is encoded as is, including lowercase and uppercase letters. This means that CD, cd and Cd are three different commands. Entering a command using uppercase letters, where it should be in lowercase, will produce different outputs.

Q36. What are environmental variables?

Environmental variables are global settings that control the shell’s function as well as that of other Linux programs. Another common term for environmental variables is global shell variables..

Q37. What are the different modes when using vi editor?

There are 3 modes under vi:
– Command mode – this is the mode where you start in
– Edit mode – this is the mode that allows you to do text editing
– Ex mode – this is the mode wherein you interact with vi with instructions to process a file

Q38. Is it possible to use shortcut for a long pathname?

Yes, there is. A feature known as filename expansion allows you do this using the TAB key. For example, if you have a path named /home/iceman/assignments directory, you would type as follows: /ho[tab]/ice[tab]/assi[tab] . This, however, assumes that the path is unique, and that the shell you’re using supports this feature.

Q39. What is redirection?

Redirection is the process of directing data from one output to another. It can also be used to direct an output as an input to another process.

Q40. What is grep command?

grep a search command that makes use of pattern-based searching. It makes use of options and parameters that is specified along the command line and applies this pattern into searching the required file output.

Q41. What could possibly be the problem when a command that was issued gave a different result from the last time it was used?

One highly possible reason for getting different results from what seems to be the same command has something to do with case sensitivity issues. Since Linux is case sensitive, a command that was previously used might have been entered in a different format from the present one. For example, to lists all files in the directory, you should type the command ls, and not LS. Typing LS would either result in an error message if there is no program by that exact name exist, or may produce a different output if there is a program named LS that performs another function.

Q42. What are the contents in /usr/local?

It contains locally installed files. This directory actually matters in environments where files are stored on the network. Specifically, locally-installed files go to /usr/local/bin, /usr/local/lib, etc.). Another application of this directory is that it is used for software packages installed from source, or software not officially shipped with the distribution.

Q43. How do you terminate an ongoing process?

Every process in the system is identified by a unique process id or pid. Use the kill command followed by the pid in order to terminate that process. To terminate all process at once, use kill 0.

Q44. How do you insert comments in the command line prompt?

Comments are created by typing the # symbol before the actual comment text. This tells the shell to completely ignore what follows. For example: “# This is just a comment that the shell will ignore.”

Q45. What is command grouping and how does it work?

You can use parentheses to group commands. For example, if you want to send the current date and time along with the contents of a file named OUTPUT to a second file named MYDATES, you can apply command grouping as follows: (date cat OUTPUT) > MYDATES

Q46. What is the command to calculate the size of a folder?

To calculate the size of a folder use the command du –sh folder1.

Q47. How can you find status of a process?

Use the command- ps ux.

Q48. How can you check the memory status ?

You can use the command
free -m to display output in MB
free -g to display output in GB

Q49. Explain how to enable root loging in Ubuntu?

The command which enables root loging is
#sudo sh-c ‘echo “greater-show-manual-login=true” >>/etc/lightdm/lightdm.conf’

Q50. Explain how to uninstall the libraries in Linux?

To uninstall the libraries in Linux, you can use command sudo apt – get remove library_name

Q1) Tell me a little about yourself.(This is a popular interview question
Q2) Why do you want to work in this company?
Q3) Do you consider yourself successful?
Q4) Are you willing to travel?
Q5) What are your salary expectations?
Q6) What would you consider your greatest strengths & weakness?
Q8 ) What motivates you?
Q9) Tell me about your dream job.
Q10) Why did you leave your last job?
Q11) What experience do you have in this field?
Q12) What do co-workers say about you?
Q13) Why should we hire you?
Q14) Are you a team player?

Yes, definitely. While I will deny the fact that I can work independently with minimal supervision, I’m also one companion every leader would ever wanted to be in his team. Whatever task is assigned to me, I make sure it meets and exceeds what is expected of me. I also make it a point to reach out to teammates whenever needed.

Q15) What is your philosophy towards work?

I have only one philosophy when it comes to work: every piece of work, regardless of size, has to be done on time and in the right manner.

Q16) What have you learned from mistakes on the job?

I learned that without proper coordination, even the simplest task could cause problems in a project. I had this problem during my first job. From that time on, I made sure every I thing follows every detail and coordination.

Q17) Describe your management style

Basically, my management style comes with promptness and flexibility. To make sure goals are achieved, I religiously study and make plans down to the smallest detail. While I do implement a strict sense of being time bounded, I also add reasonable allowances and make room for contingencies.

Q18) How would you know you were successful on this job?

Being successful means goals that are set are met. Being successful also means standards are not only reach, but also even exceeded wherever possible.

Q19) Are you willing to work overtime? Nights? Weekends?

I understand that being asked to work for an extended number of hours comes with a good reason in the first place, so I’m ok with it. It an extra effort means something for the company, I’ll be happy to do it.

Q20) What will you do if you don’t get this position?

I have high hopes that I will be hired. In case it turns the other way around, I would have to move on and search for another job.

Q21) What have you done to improve your knowledge in the last year?

I have attended in several self-improvement, time management and personality development seminars. I have also participated in training workshops related to [industry].

Q22) How you would be an asset to this company?

My skills in […] are outstanding. I have earned a lot of awards and certifications from my past employers. As an employee, I handle pressure with ease and can work with minimal supervision.

Q23) How long would you expect to work for us in case you are hired?

As much as possible I would like to be in this company for a long time. For as long as management sees me as an asset, I am willing to stay.

Q24) Describe your ability to work under pressure.

I understand the nature of this position that I am applying for quite well, along with the pressure that comes with it. Being under pressure doesn’t discourage me, it motivates me more.

Q25) Tell me about a problem you had with a supervisor.

I’m sorry but I can’t recall any instance when I had such a problem with a supervisor.

Q26) Why do you think you would do well at this job?

Because, I love this job. I feel very confident of myself and my ability to delivery nothing short of quality output. My years of experience helped me develop these skills.

Q27) What has disappointed you about a job?

I once felt that I was not being given enough challenges to work on. I was a bit disappointed because I was so eager to go for more.

Q28) What was the most difficult decision for you made?

It was a time when I had to choose between joining a group of employees protesting some issues in the company, and staying away from the issue. I ended up being a mediator between the employees and our immediate supervisor, and I was glad I made that decision because it all ended well and without further conflicts in the work place.

Q29) Why should we hire you?

Because I believe my talents and skills will definitely be a big contribution to your company’s continuing pursuit of excellence. I’m a fast worker and hardworking person who can be very reliable asset to this company.

Q30) Where do you see yourself in 5 years?

In five years’ time, I see myself growing along with the team, developing and using new skills to the benefit of the organization. I find this position extremely motivating and exciting. I can imagine many challenges lying ahead of me, which I am excited to experience. And therefore, I am eager to invest my five years time learning all facets of the job towards professional advancement.

**The Questions said above are only the short blueprint of the interview questions. On the off chance that you feel that we have missed any subject, you can simply come to us and learn it, or simply call us to affirm.

Linux interview-question,rhcsa interview-question,cisco interview-question,netwoking interview-question,seo interview-question,web design interview-question,web development interview-question,ccna interview-question,php interview-question

contact for adminsion

  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet
  • 100% Fresher Job Placemnet

Call for More Details

Fill in your info !

Free Consultation & Free Brochure

FAQ(FREQUENTLY ASKED QUESTIONS)

Why Should I Learn this Course from WebAsha Technologies in Pune?

Our Strengths

  • Learn from basic to advance level.
  • Project and Case study.
  • Job oriented course content.
  • Job assistance for fresher students.
  • Personal level training attention and project monitoring.
  • Small training batches for interactive training.
  • Customized training Programs.
  • Courseware includes all latest technologies.
  • Flexible Training Schedule- Courses can be delivered at your chosen convenient time.
  • Flexible group size.
  • Affordable Training Price.
  • Affordable course fee.
  • Most advanced Training Resources –structured course material, learning CDs.
  • Post Training Support.
  • Specialized Batch for Corporate Clients.
  • Full Time Lab Environment as per globally recommended standards.
  • Globally recommended Official Curriculum.
  • Hands-on Instructor led training.

Hey! Are You Looking for Exciting Offers?

Call now: +91-848584 7920 | 848584 6227 and know the exciting offers on classroom or Global Certification Exam, available for you!

Does WebAsha Technologies Offer Placement Assistance After Course Completion?

Webasha Technologies is the Legend in offering placement to the students. You can visit our Placed Students List on our website. 90% students placed through our direct reference of our alumni. quite 1500+ students placed in last year. we've a fanatical placement portal, Whats app Group which caters to the requirements of the scholars during placements. Webasha Technologies conducts regular skill development sessions including mock interviews, Resume writing, presentation skills to arrange students to face a challenging interview situation with ease. 1000+ interviews organized at our center.

Who is My Trainer & How are they Selected?

  • Our trainers are more than 12+ years of experience in course relevant technologies.
  • Webasha Trainers are expert level and fully up-to-date in the subjects they teach because they continue to spend time working on real-world industry applications.
  • Webasha Trainers have experienced on multiple real-time projects in their industries.
  • They are working professionals working in multinational companies such as ATOS, Vodafone, Airtel, IBM, RedHat, etc…
  • Trained more than 1000+ students in a year.
  • They have Strong theoretical & practical knowledge.
  • They are certified professionals with high grade.
  • They are well connected with hiring HRs in multinational companies.

What to Do if I Miss a Session?

Don't worries. WebAsha Technologies assure that no one misses single lectures. WebAsha team will reschedule the classes as per your convenience within the stipulated course duration with all such possibilities. You can even attend that topic with any other running batches.

Which type of Certification will I Receive After Course Completion?

You will receive Forte WebAsha Technologies Pvt. Ltd. globally recognized course completion certification.

Any Group Discounts (or) Corporate Training for Our Team?

Yes, WebAsha Technologies provides group discounts for its training programs. To get more details, visit our website and contact our support team via Call, Email, Live Chat, Whats app Chat option or drop a Quick Inquiry. Depending on the group size, WebAsha Team offer discounts as per the terms and conditions.

What are the Payment Options?

We accept all major kinds of payment options. Cash, UPI, Google pay, Phone-pay, Paytm, Card (Master, Visa, and Maestro, etc), Net Banking and etc.

Still, I have More Queries to Ask?

Please Contact our course adviser through Call or Whats app +91848584 7920 | +91848584 6227. Or you can share your queries through [email protected]