Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apache-htcacheclean
2.43
KB
-rwxr-xr-x
2024-09-28 08:35
apache2
7.95
KB
-rwxr-xr-x
2024-09-29 18:51
apparmor
3.65
KB
-rwxr-xr-x
2023-02-14 11:49
cron
2.99
KB
-rwxr-xr-x
2022-07-17 08:49
dbus
3.08
KB
-rwxr-xr-x
2023-09-16 10:03
exim4
7
KB
-rwxr-xr-x
2025-03-21 14:34
haveged
2.31
KB
-rwxr-xr-x
2021-01-13 23:56
hwclock.sh
1.71
KB
-rwxr-xr-x
2024-11-21 20:01
kmod
2.01
KB
-rwxr-xr-x
2022-12-09 22:58
memcached
3.4
KB
-rwxr-xr-x
2023-01-12 00:02
nfs-common
5.53
KB
-rwxr-xr-x
2024-12-11 14:00
nfs-kernel-server
4.67
KB
-rwxr-xr-x
2024-12-11 14:00
php7.2-fpm
4.19
KB
-rwxr-xr-x
2025-03-11 13:05
php7.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-10 04:38
php8.1-fpm
4.19
KB
-rwxr-xr-x
2025-03-13 18:12
php8.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-09 07:02
procps
959
B
-rwxr-xr-x
2022-12-19 06:06
rpcbind
2.45
KB
-rwxr-xr-x
2022-07-27 09:20
rsync
4.31
KB
-rwxr-xr-x
2025-01-15 18:47
screen-cleanup
1.19
KB
-rwxr-xr-x
2022-11-04 02:35
ssh
3.96
KB
-rwxr-xr-x
2025-02-14 11:51
sudo
1.13
KB
-rwxr-xr-x
2023-06-27 11:45
udev
6.71
KB
-rwxr-xr-x
2025-03-06 14:56
unattended-upgrades
1.36
KB
-rwxr-xr-x
2022-12-31 20:59
uuidd
1.28
KB
-rwxr-xr-x
2024-11-21 20:01
x11-common
2.7
KB
-rwxr-xr-x
2021-08-18 10:58
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: hwclock # Required-Start: # Required-Stop: mountdevsubfs # Should-Stop: umountfs # Default-Start: S # Default-Stop: 0 6 # Short-Description: Save system clock to hardware on shutdown. ### END INIT INFO # Note: this init script and related code is only useful if you # run a sysvinit system, without NTP synchronization. if [ -e /run/systemd/system ] ; then exit 0 fi unset TZ hwclocksh() { HCTOSYS_DEVICE=rtc0 [ ! -x /sbin/hwclock ] && return 0 [ ! -r /etc/default/rcS ] || . /etc/default/rcS [ ! -r /etc/default/hwclock ] || . /etc/default/hwclock . /lib/lsb/init-functions verbose_log_action_msg() { [ "$VERBOSE" = no ] || log_action_msg "$@"; } case "$1" in start) # start is handled by /usr/lib/udev/rules.d/85-hwclock.rules. return 0 ;; stop|restart|reload|force-reload) # Updates the Hardware Clock with the System Clock time. # This will *override* any changes made to the Hardware Clock, # for example by the Linux kernel when NTP is in use. log_action_msg "Saving the system clock to /dev/$HCTOSYS_DEVICE" if /sbin/hwclock --rtc=/dev/$HCTOSYS_DEVICE --systohc; then verbose_log_action_msg "Hardware Clock updated to `date`" fi ;; show) /sbin/hwclock --rtc=/dev/$HCTOSYS_DEVICE --show ;; *) log_success_msg "Usage: hwclock.sh {stop|reload|force-reload|show}" log_success_msg " stop and reload set hardware (RTC) clock from kernel (system) clock" return 1 ;; esac } hwclocksh "$@"