Linux Printing Files
Printing files in Linux can be done using the lp
command. Here's how to print a file in Linux:
- Check the printer: Before printing a file, you need to make sure that the printer is available and configured correctly. You can check the available printers by using the
lpstat
command:
csslpstat -p
This will list all the available printers.
- Print a file: To print a file, use the
lp
command followed by the name of the file you want to print. For example, to print a file called "myfile.txt" on the default printer, use the following command:
lp myfile.txt
By default, the lp
command sends the file to the default printer. If you want to specify a different printer, use the -d
option followed by the name of the printer:
lp -d printername myfile.txt
- Check the print queue: After sending a file to the printer, you can check the print queue to see the status of the job. Use the
lpq
command to display the print queue:
lpq
This will display a list of pending print jobs and their status.
- Cancel a print job: If you need to cancel a print job, use the
lprm
command followed by the job ID. For example, to cancel job number 3, use the following command:
lprm 3
This will cancel the print job.
Printing files in Linux is easy and can be done using the lp
command. You can specify the printer you want to use, check the print queue for the status of print jobs, and cancel print jobs if necessary using the lpq
and lprm
commands.
Comments
Post a Comment