1. Mount Partition Image From E01 Disk Image

    Mount E01 as DD

    #mount_ewf.py TEST.E01 /mnt/ewf

    Run mmls to find partition $START and $SECTOR_SIZE

    #mmls /mnt/ewf/ewf1

    Calculate byte offset using bc

    #echo "$START * $SECTOR_SIZE"|bc

    Mount partition image with the byte offset

    #mount -o ro,loop,show_sys_files,streams_interace=windows,offset=$OFFSET /mnt/ewf/ewf1 /mnt/partition

    1 week ago  /  0 notes

  2. Extract Unallocated Space From An E01 Image

    Mount E01 as DD

    #mount_ewf.py TEST.E01 /mnt/ewf

    Use mmls to find partition $START

    #mmls /mnt/ewf/ewf1

    Use blkls to extract unallocated space

    #blkls -o $START > /dst/unalloc.dd

    1 week ago  /  0 notes

  3. CentOS 6 RPMBUILD Directory

    The default build directory has been changed to

    /root/rpmbuild

    Instead of

    /usr/src/redhat

    4 weeks ago  /  0 notes

  4. bulk_extractor with E01

    #bulk_extractor -o ~/output TEST.E01

    1 month ago  /  0 notes

  5. Wget all contents from a remote directory

    #wget -r -np -nH --cut-dirs=3 -R index.html http://test.com/a/b/c/d

    Where —cut-dirs=3 is the 3 levels of directories, /a/b/c

    1 month ago  /  0 notes

  6. Terminus TrueType Fonts

    Source

    http://files.ax86.net/terminus-ttf/

    Alternative Location

    http://files.arthurkao.com/terminus/

    1 month ago  /  0 notes