OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
lib
/
udev
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:54 PM
rwxr-xr-x
📄
ata_id
38.42 KB
03/03/2023 04:27:56 AM
rwxr-xr-x
📄
bridge-network-interface
1.05 KB
08/20/2015 04:51:09 PM
rwxr-xr-x
📄
cdrom_id
50.42 KB
03/03/2023 04:27:56 AM
rwxr-xr-x
📄
collect
22.34 KB
03/03/2023 04:27:56 AM
rwxr-xr-x
📄
console-setup-tty
4.52 KB
04/19/2016 07:21:42 PM
rwxr-xr-x
📄
hotplug.functions
1.15 KB
04/02/2021 02:39:40 AM
rw-r--r--
📄
hwclock-set
776 bytes
06/14/2022 09:28:42 PM
rwxr-xr-x
📄
hwdb.bin
6.52 MB
10/02/2024 07:50:40 PM
r--r--r--
📁
hwdb.d
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
ifupdown-hotplug
3.07 KB
11/30/2016 05:15:30 PM
rwxr-xr-x
📄
mtd_probe
10.25 KB
03/03/2023 04:27:56 AM
rwxr-xr-x
📁
rules.d
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
scsi_id
50.95 KB
03/03/2023 04:27:56 AM
rwxr-xr-x
📄
snappy-app-dev
38.52 KB
06/06/2024 02:32:03 PM
rwxr-xr-x
📄
v4l_id
14.34 KB
03/03/2023 04:27:56 AM
rwxr-xr-x
Editing: hwclock-set
Close
#!/bin/sh # Reset the System Clock to UTC if the hardware clock from which it # was copied by the kernel was in localtime. dev=$1 if [ -e /run/systemd/system ] ; then exit 0 fi if [ -e /run/udev/hwclock-set ]; then exit 0 fi if [ -f /etc/default/rcS ] ; then . /etc/default/rcS fi # These defaults are user-overridable in /etc/default/hwclock BADYEAR=no HWCLOCKACCESS=yes HWCLOCKPARS= HCTOSYS_DEVICE=rtc0 if [ -f /etc/default/hwclock ] ; then . /etc/default/hwclock fi if [ yes = "$BADYEAR" ] ; then /sbin/hwclock --rtc=$dev --systz --badyear /sbin/hwclock --rtc=$dev --hctosys --badyear else /sbin/hwclock --rtc=$dev --systz /sbin/hwclock --rtc=$dev --hctosys fi # Note 'touch' may not be available in initramfs > /run/udev/hwclock-set