OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
cryptsetup
/
checks
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
blkid
1.02 KB
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
ext2
387 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
swap
148 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
un_blkid
832 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
xfs
147 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
Editing: ext2
Close
#!/bin/sh echo "WARNING: The check script $0 is depreciated. Please use check script blkid instead." >&2 not_fs="" for fs in ext2 ext3 ext4 ext4dev; do /lib/cryptsetup/checks/blkid "$1" "$fs" >/dev/null || not_fs="$not_fs $fs" done if [ "$not_fs" = " ext2 ext3 ext4 ext4dev" ]; then echo " - The device $1 does not contain a valid ext2, ext3, ext4 or ext4dev filesystem." exit 1 fi