Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rcS.d /
Delete
Unzip
Name
Size
Permission
Date
Action
S01apparmor
3.65
KB
-rwxr-xr-x
2023-02-14 11:49
S01hwclock.sh
1.71
KB
-rwxr-xr-x
2023-02-13 08:48
S01keyboard-setup.sh
1.45
KB
-rwxr-xr-x
2022-07-18 12:25
S01kmod
2.01
KB
-rwxr-xr-x
2022-12-09 22:58
S01networking
4.42
KB
-rwxr-xr-x
2023-01-23 21:14
S01procps
959
B
-rwxr-xr-x
2022-12-19 06:06
S01udev
6.71
KB
-rwxr-xr-x
2023-02-28 11:15
S01ufw
2.03
KB
-rwxr-xr-x
2023-05-16 13:59
S01x11-common
2.7
KB
-rwxr-xr-x
2021-08-18 10:58
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: keyboard-setup.sh # Required-Start: mountkernfs # Required-Stop: # X-Start-Before: checkroot # Default-Start: S # Default-Stop: # X-Interactive: true # Short-Description: Set the console keyboard layout # Description: Set the console keyboard as early as possible # so during the file systems checks the administrator # can interact. At this stage of the boot process # only the ASCII symbols are supported. ### END INIT INFO if [ -f /bin/setupcon ]; then case "$1" in stop|status) # console-setup isn't a daemon ;; start|force-reload|restart|reload) if [ -f /lib/lsb/init-functions ]; then . /lib/lsb/init-functions else log_action_begin_msg () { echo -n "$@... " } log_action_end_msg () { if [ "$1" -eq 0 ]; then echo done. else echo failed. fi } fi log_action_begin_msg "Setting up keyboard layout" if /lib/console-setup/keyboard-setup.sh; then log_action_end_msg 0 else log_action_end_msg $? fi ;; *) echo 'Usage: /etc/init.d/keyboard-setup.sh {start|reload|restart|force-reload|stop|status}' exit 3 ;; esac fi