Ubuntu Interview Questions and Answers
Ques 16. What is the purpose of the '/etc/apt/sources.list.d/' directory?
The '/etc/apt/sources.list.d/' directory is used to store additional APT repository configuration files.
Is it helpful?
Add Comment
View Comments
Ques 17. How do you check the available disk space in Ubuntu?
You can check disk space using the 'df' command. For example: df -h
Is it helpful?
Add Comment
View Comments
Ques 18. What is the purpose of the 'chmod' command?
The 'chmod' command is used to change the permissions of a file or directory.
Example:
chmod permissions filename
Is it helpful?
Add Comment
View Comments
Ques 19. How do you install software from source code in Ubuntu?
You can install software from source code using the following commands: ./configure, make, sudo make install
Is it helpful?
Add Comment
View Comments
Ques 20. Explain the purpose of the 'cron' system in Ubuntu.
The 'cron' system is used for scheduling tasks to run automatically at specified intervals.
Is it helpful?
Add Comment
View Comments
Most helpful rated by users:
- What is the default package manager in Ubuntu?
- How do you update the package list with APT?
- How can you check the version of Ubuntu installed on your system?
- Explain the purpose of the 'sudo' command.
- What is the purpose of the 'grep' command?