Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
texlive-doc /
fonts /
modes /
[ HOME SHELL ]
Name
Size
Permission
Action
GNUmakefile.gz
1.94
KB
-rw-r--r--
README
854
B
-rw-r--r--
modedpicheck
764
B
-rw-r--r--
modelist.txt.gz
2.5
KB
-rw-r--r--
modenames.txt
1.21
KB
-rw-r--r--
modes.pdf
261.19
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modedpicheck
#!/bin/sh # $Id: modedpicheck,v 1.2 2020/01/28 18:57:25 karl Exp $ # Check that the resolution of all defined modes is as intended, # and that landscape works. Public domain. modes=modes.mf for j in `grep '^mode_def' $modes | awk '$2 != "help" {print $2}'`; do mf_bdpi=`mf '\mode:='$j';mode_setup;message"BDPI= "&decimal round pixels_per_inch;end.' </dev/null | awk '/DPI=/ {print $2}'` mf_lbdpi=`mf '\mode:='$j';landscape; mode_setup;message"BDPI= "&decimal round pixels_per_inch;end.' </dev/null | awk '/DPI=/ {print $2}'` if test "$mf_bdpi" = "$mf_lbdpi"; then grep "^mode_def $j.*($mf_bdpi dpi)" $modes >/dev/null 2>&1 || echo $j else grep "^mode_def $j.*(${mf_bdpi}x$mf_lbdpi dpi)" $modes >/dev/null 2>&1 || echo $j fi done
Close