Skip to content

Instantly share code, notes, and snippets.

@parth-io
Forked from AaronCQL/sunfire-print.sh
Created July 17, 2021 15:31
Show Gist options
  • Save parth-io/6c0b961860021891825c0a3791db82cc to your computer and use it in GitHub Desktop.
Save parth-io/6c0b961860021891825c0a3791db82cc to your computer and use it in GitHub Desktop.
Cheatsheet for printing via Sunfire
# Login to Sunfire
ssh e0123456@sunfire.comp.nus.edu.sg
# Copy a local file to Sunfire
scp some_file.txt e0123456@sunfire.comp.nus.edu.sg:/home/e/e0123456/
# Copy a local directory to Sunfire
scp -r ./some_directory e0123456@sunfire.comp.nus.edu.sg:/home/e/e0123456/
# Convert PDF to PS file
pdftops input.pdf
# Print via Sunfire
lpr -Ppstsb input.ps
# Convert PS file to 2 pages per sheet
psnup -2up input.ps output.ps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment