Пример #1
0
 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
     ]
Пример #2
0
 def __init__(self, internLog, terminalLog, mount_path):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["umount", mount_path]
Пример #3
0
 def __init__(self, internLog, terminalLog, image, dumpDir):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["foremost", "-i", image, "-o", dumpDir]
Пример #4
0
 def __init__(self, internLog, terminalLog, image, dumpDir):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["foremost", "-i", image, "-o", dumpDir]
Пример #5
0
 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]
Пример #6
0
 def __init__(self, internLog, terminalLog):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["yes"]
Пример #7
0
 def __init__(self, internLog, terminalLog, drive):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["smartctl", "--info", drive]
     self.serial_ = ""
     self.size_ = ""
Пример #8
0
 def __init__(self, internLog, terminalLog, mount_path):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["umount", mount_path]
Пример #9
0
 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]
Пример #10
0
 def __init__(self, internLog, terminalLog, path):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["md5sum", path]
     self.hash_ = ""
Пример #11
0
 def __init__(self, internLog, terminalLog, drive):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["blkid", drive]
     self.uuid_ = ""
Пример #12
0
 def __init__(self, internLog, terminalLog, image_path):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["mmls", image_path]
     self.partitions_ = []
Пример #13
0
 def __init__(self, internLog, terminalLog, drive):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["hdparm", "-i", drive]
     self.serial_ = ""
Пример #14
0
 def __init__(self, internLog, terminalLog, file):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["python", "/media/raid0/Owade/ivan/LsaMemParser.py", file]
Пример #15
0
 def __init__(self, internLog, terminalLog, image_path):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["mmls", image_path]
     self.partitions_ = []
Пример #16
0
 def __init__(self, internLog, terminalLog, drive):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["blkid", drive]
     self.uuid_ = ""
Пример #17
0
 def __init__(self, internLog, terminalLog, path):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["md5sum", path]
     self.hash_ = ""
Пример #18
0
 def __init__(self, internLog, terminalLog, file):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["python", "/media/raid0/Owade/ivan/LsaMemParser.py", file]
Пример #19
0
 def __init__(self, internLog, terminalLog, drive):
     Launcher.__init__(self, internLog, terminalLog)
     self.cmd_ = ["hdparm", "-i", drive]
     self.serial_ = ""
Пример #20
0
 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]