Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libsane-common /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
README
2.89
KB
-rw-r--r--
xerox
1.21
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xerox
#!/bin/sh # # This is a xerox script for Laserjet Printer. # To get use of Postscript change the Printercommand and enable the # command at the end of this File. # DEV=mustek:/dev/scanner RES=300 PAPERTYPE=letter #PAPERTYPE=a4 PRINTERTYPE=ps #PRINTERTYPE=lj # # Non-printable area (left, right, top, and bottom margins): # LMARGIN=0.0 RMARGIN=0.0 TMARGIN=0.25 BMARGIN=0.0 # # Scanner-specific options: # DEVOPTS="--mode Gray" #DEVOPTS="$DEVOPTS --custom-gamma=yes --gamma-table [0]0-[64]128-[255]255" #DEVOPTS="$DEVOPTS --backtrack=yes" # needed for Mustek 12000SP # # Printer Command/Resolution PRES=$RES # change this if other Res. is desired # # Papersize in inch if [ "$PAPERTYPE" = "letter" ]; then WIDTH=8; HEIGHT=10 else # assume a4 paper WIDTH=8.27; HEIGHT=11.69 fi SCANWIDTH=`bc <<_EOF_ scale=3 $WIDTH-$LMARGIN-$RMARGIN _EOF_` SCANHEIGHT=`bc <<_EOF_ scale=3 $HEIGHT-$TMARGIN-$BMARGIN _EOF_` # SCALE=`bc << _EOF_ scale=3 75/$RES _EOF_` if [ "$PRINTERTYPE" = "ps" ]; then POST="pnmtops -rle -scale $SCALE -dpi $PRES | lpr" else POST="pgmtopbm | pbmtolj -resolution $PRES | lpr -Praw" fi scanimage -d $DEV \ -x $SCANWIDTH\" -y $SCANHEIGHT\" -l $LMARGIN\" -t $TMARGIN\" \ --resolution $RES $DEVOPTS | eval $POST
Close