Linux sv3046.xserver.jp 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
Apache
Server IP : 202.254.234.47 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : kinomori
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
usr /
libexec /
Delete
Unzip
Name
Size
Permission
Date
Action
awk
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
coreutils
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
courier-authlib
[ DIR ]
drwxr-xr-x
2024-10-21 22:11
dbus-1
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
gawk
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
gcc
[ DIR ]
drwxr-xr-x
2024-04-23 10:58
getconf
[ DIR ]
drwxr-xr-x
2024-10-21 22:11
git-core
[ DIR ]
drwxr-xr-x
2025-08-07 18:19
hostname
[ DIR ]
drwxr-xr-x
2023-12-21 11:11
initscripts
[ DIR ]
drwxr-xr-x
2023-12-21 11:11
ipset
[ DIR ]
drwxr-xr-x
2024-10-21 22:11
iptables
[ DIR ]
drwxr-xr-x
2024-10-21 22:11
linux-boot-probes
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
man-db
[ DIR ]
drwxr-xr-x
2023-12-21 18:54
openldap
[ DIR ]
drwxr-xr-x
2024-05-01 09:39
openssh
[ DIR ]
drwxr-xr-x
2024-10-11 11:36
os-prober
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
os-probes
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
p11-kit
[ DIR ]
drwxr-xr-x
2024-10-11 11:36
pcp
[ DIR ]
drwxr-xr-x
2023-12-21 18:54
postfix
[ DIR ]
drwxr-xr-x
2024-10-21 22:11
proftpd
[ DIR ]
drwxr-xr-x
2024-10-21 22:11
selinux
[ DIR ]
drwxr-xr-x
2024-10-11 11:36
sudo
[ DIR ]
drwxr-xr-x
2025-07-07 13:38
utempter
[ DIR ]
drwxr-xr-x
2023-12-21 11:09
dirmngr_ldap
87.32
KB
-rwxr-xr-x
2022-09-13 16:58
gam_server
99.2
KB
-rwxr-xr-x
2021-05-19 11:32
gpg-check-pattern
111.88
KB
-rwxr-xr-x
2022-09-13 16:58
gpg-preset-passphrase
87.21
KB
-rwxr-xr-x
2022-09-13 16:58
gpg-protect-tool
206.3
KB
-rwxr-xr-x
2022-09-13 16:58
gpg-wks-client
227.22
KB
-rwxr-xr-x
2022-09-13 16:58
grepconf.sh
253
B
-rwxr-xr-x
2021-04-12 10:57
httpd-ssl-gencerts
1.29
KB
-rwxr-xr-x
2025-07-23 17:45
httpd-ssl-pass-dialog
92
B
-rwxr-xr-x
2025-07-23 17:45
import-state
1.03
KB
-rwxr-xr-x
2022-08-10 22:03
loadmodules
233
B
-rwxr-xr-x
2022-08-10 22:03
mariadbd
23.75
MB
-rwxr-xr-x
2023-10-13 00:33
mlocate-run-updatedb
138
B
-rwxr-x---
2021-04-12 13:50
mysql-check-socket
1.55
KB
-rwxr-xr-x
2023-10-13 00:27
mysql-check-upgrade
1.56
KB
-rwxr-xr-x
2023-10-13 00:27
mysql-prepare-db-dir
4.93
KB
-rwxr-xr-x
2023-10-13 00:27
mysql-scripts-common
2.54
KB
-rw-r--r--
2023-10-13 00:27
mysqld
23.75
MB
-rwxr-xr-x
2023-10-13 00:33
no-python
157
B
-rwxr-xr-x
2025-07-02 04:03
platform-python
11.59
KB
-rwxr-xr-x
2025-07-02 04:03
platform-python3.6
11.59
KB
-rwxr-xr-x
2025-07-02 04:03
platform-python3.6m
11.59
KB
-rwxr-xr-x
2025-07-02 04:03
scdaemon
442.36
KB
-rwxr-xr-x
2022-09-13 16:58
tcawmgr.cgi
24.5
KB
-rwxr-xr-x
2021-04-12 17:33
Save
Rename
#!/bin/sh # Some useful functions used in other MySQL helper scripts # This scripts defines variables datadir, errlogfile, socketfile export LC_ALL=C # extract value of a MySQL option from config files # Usage: get_mysql_option VARNAME DEFAULT SECTION [ SECTION, ... ] # result is returned in $result # We use my_print_defaults which prints all options from multiple files, # with the more specific ones later; hence take the last match. get_mysql_option(){ if [ $# -ne 3 ] ; then echo "get_mysql_option requires 3 arguments: section option default_value" return fi sections="$1" option_name="$2" default_value="$3" result=`/usr/bin/my_print_defaults $my_print_defaults_extra_args $sections | sed -n "s/^--${option_name}=//p" | tail -n 1` if [ -z "$result" ]; then # not found, use default result="${default_value}" fi } # For the case of running more instances via systemd, scrits that source # this file can get --default-group-suffix or similar option as the first # argument. The utility my_print_defaults needs to use it as well, so the # scripts sourcing this file work with the same options as the daemon. my_print_defaults_extra_args='' while echo "$1" | grep -q '^--defaults' ; do my_print_defaults_extra_args="${my_print_defaults_extra_args} $1" shift done # Defaults here had better match what mysqld_safe will default to # The option values are generally defined on three important places # on the default installation: # 1) default values are hardcoded in the code of mysqld daemon or # mysqld_safe script # 2) configurable values are defined in /etc/my.cnf # 3) default values for helper scripts are specified bellow # So, in case values are defined in my.cnf, we need to get that value. # In case they are not defined in my.cnf, we need to get the same value # in the daemon, as in the helper scripts. Thus, default values here # must correspond with values defined in mysqld_safe script and source # code itself. server_sections="mysqld_safe mysqld server mysqld-10.5 mariadb mariadb-10.5 client-server" get_mysql_option "$server_sections" datadir "/var/lib/mysql" datadir="$result" # if there is log_error in the my.cnf, my_print_defaults still # returns log-error # log-error might be defined in mysqld_safe and mysqld sections, # the former has bigger priority get_mysql_option "$server_sections" log-error "$datadir/`uname -n`.err" errlogfile="$result" get_mysql_option "$server_sections" socket "/var/lib/mysql/mysql.sock" socketfile="$result" get_mysql_option "$server_sections" pid-file "$datadir/`uname -n`.pid" pidfile="$result"