home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
usr
/
share
/
bug
/
cryptsetup
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-03-11
|
297 b
|
24 lines
#!/bin/sh
exec >&3
echo "-- /proc/cmdline"
cat /proc/cmdline
echo
if [ -r /etc/crypttab ]; then
echo "-- /etc/crypttab"
cat /etc/crypttab
echo
fi
if [ -r /etc/fstab ]; then
echo "-- /etc/fstab"
cat /etc/fstab
echo
fi
echo "-- lsmod"
lsmod
echo