def __init__(self, internLog, terminalLog, type, offset, image_path, mount_path): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = [ "mount", "-t", type, "-o", "r,force,loop,offset=%i" % (offset), image_path, mount_path ]
def __init__(self, internLog, terminalLog, mount_path): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["umount", mount_path]
def __init__(self, internLog, terminalLog, image, dumpDir): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["foremost", "-i", image, "-o", dumpDir]
def __init__(self, internLog, terminalLog, drive, image, log, retry=3): Launcher.__init__(self, internLog, terminalLog) if retry == 0: self.cmd_ = ["ddrescue", drive, image, log] else: self.cmd_ = ["ddrescue", "-r%i" % retry, drive, image, log]
def __init__(self, internLog, terminalLog): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["yes"]
def __init__(self, internLog, terminalLog, drive): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["smartctl", "--info", drive] self.serial_ = "" self.size_ = ""
def __init__(self, internLog, terminalLog, type, offset, image_path, mount_path): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["mount", "-t", type, "-o", "r,force,loop,offset=%i" % (offset), image_path, mount_path]
def __init__(self, internLog, terminalLog, path): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["md5sum", path] self.hash_ = ""
def __init__(self, internLog, terminalLog, drive): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["blkid", drive] self.uuid_ = ""
def __init__(self, internLog, terminalLog, image_path): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["mmls", image_path] self.partitions_ = []
def __init__(self, internLog, terminalLog, drive): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["hdparm", "-i", drive] self.serial_ = ""
def __init__(self, internLog, terminalLog, file): Launcher.__init__(self, internLog, terminalLog) self.cmd_ = ["python", "/media/raid0/Owade/ivan/LsaMemParser.py", file]