OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
initramfs-tools
/
scripts
/
local-top
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:20 AM
rwxr-xr-x
📄
cryptopensc
737 bytes
08/03/2020 09:28:48 PM
rwxr-xr-x
📄
cryptroot
11.42 KB
08/03/2020 09:28:48 PM
rwxr-xr-x
📄
iscsi
10.06 KB
04/06/2022 07:19:56 PM
rwxr-xr-x
📄
lvm2
970 bytes
01/23/2020 03:45:10 PM
rwxr-xr-x
Editing: cryptopensc
Close
#!/bin/sh set -e PREREQ="" prereqs() { echo "$PREREQ" } case $1 in prereqs) prereqs exit 0 ;; esac . /scripts/functions # Hook for starting smartcard reading software if [ ! -e /usr/sbin/pcscd ]; then exit 0 fi # Start pcscd daemon normally: # start-stop-daemon --start --quiet \ # --pidfile /var/run/pcscd.pid \ # --exec /usr/sbin/pcscd # Alternatively, start pcscd daemon in foreground so that it's pretty colored # output may be seen on the console, useful for watching error messages since # pcscd uses syslog which is not available (use --error or --critical to filter # out debug message clutter): # /usr/sbin/pcscd --error --foreground & /usr/sbin/pcscd --foreground &