OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
initramfs-tools
/
scripts
/
local-top
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/14/2020 08:20:05 AM
rwxr-xr-x
📄
cryptopensc
737 bytes
08/23/2018 02:36:42 PM
rwxr-xr-x
📄
cryptroot
10.24 KB
08/23/2018 02:36:42 PM
rwxr-xr-x
📄
iscsi
10.36 KB
05/11/2020 01:27:31 AM
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 &