Question 1
Which file defines the network locations from where the Debian package manager downloads software packages?
/etc/dpkg/dpkg.cfg
/etc/dpkg/dpkg.cfg
Question 2
Which of the following commands can be used to create a new file that is 100kB in size?
Question 3
What is the default action of the split command on an input file?
Question 4
Given a log file loga.log with timestamps of the format DD/MM/YYYY:hh:mm:ss, which command filters out all log entries in the time period between 8:00 am and 8:59 am?
grep -E ':08:[09]+:[09]+' loga.log
grep -E ':08:[09]+:[09]+' loga.log
Question 5
Which of the following commands changes all CR-LF line breaks in the text file userlist.txt to Linux standard LF line breaks and stores the result in newlist.txt?