The spool directory
 
 holds all work requests and all log files for UUCP
 
 . File transfers can be requested by the uucp and uux. File transfer requests for a remote system. … Data files for file transfer requests for a remote system.
 What is spool directory?
 
 The spool folder is
 
 a software folder or computer that holds files waiting to be printed until the printer is ready
 
 .
 What is a spool file Linux?
 
 /var/spool
 
 contains data which is awaiting some kind of later processing
 
 . Data in /var/spool represents work to be done in the future (by a program, user, or administrator); often data is deleted after it has been processed.
 Where is the spool directory?
 
 The default Print Spooler directory of a Windows operating system installation is located in
 
 /windows/system32/spool/PRINTERS on
 
 the system partition.
 What is the path for printer spool directory in Linux?
 
 The default location of print spool files is
 
 /var/spool/cups
 
 in Ubuntu 14.04.
 What do you mean by spooling?
 
 The word ‘spooling’ is a computer programming term and refers to
 
 a computer application that organises data or information and passes it across to a device with low memory
 
 and is usually slow to handle the data, such as a printer.
 Which command will find the files in var spool folder?
 
 Finding file’s owned by a particular user can be done by using
 
 find command
 
 in linux as shown below. The above command searches for files owned by user john, in /var directory..you can also search for files owned by john on the entire system, by just replacing /var with “/”.
 Does Linux have a print spooler?
 
Linux Print Spooling
The OM Plus’ Linux print spooler has powerful rules processing for flexible event based actions and has a strong centralized administration structure.
 What is spool command?
 
 The “spool” command is
 
 used within SQL*Plus to direct the output of any query to a server-side flat file
 
 . SQL> spool /tmp/myfile.lst. Becuse the spool command interfaces with the OS layer, the spool command is commonly used within Oracle shell scripts.
 How do I run a script in Linux?
 
- Open the terminal. Go to the directory where you want to create your script.
- Create a file with . sh extension.
- Write the script in the file using an editor.
- Make the script executable with command chmod +x <fileName>.
- Run the script using ./<fileName>.
 Which command will find all the files without permission 777?
 
 
 find /home/ -perm 777 -type f
 
This command will list all the files inside the home directory that has 777 permissions.
 How do I clear the print spooler folder?
 
- On the host, open the Run window by pressing the Windows logo key + R.
- In the Run window, type services. …
- Scroll down to Print Spooler.
- Right click Print Spooler and select Stop.
- Navigate to C:WindowsSystem32spoolPRINTERS and delete all files in the folder.
 How do I view a SPL file?
 
- Install Microsoft Windows software. …
- Update Microsoft Windows to the latest version. …
- Assign Microsoft Windows to SPL files. …
- Ensure that the SPL file is complete and free of errors.
 What is var tmp?
 
 The /var/tmp directory is
 
 made available for programs that require temporary files or directories that are preserved between system reboots
 
 . Therefore, data stored in /var/tmp is more persistent than data in /tmp . Files and directories located in /var/tmp must not be deleted when the system is booted.
 Which command will to find all the files which are changed in last 1 hour?
 
 Example 1: Find files whose content got updated within last 1 hour. To find the files based up on the content modification time, the option
 
 -mmin, and -mtime
 
 is used. Following is the definition of mmin and mtime from man page.
 Which command will print the length of the longest line?
 
 -L:
 
 The ‘wc’ command
 
 allow an argument -L, it can be used to print out the length of longest (number of characters) line in a file.
 
 