Hard Disk Manager

Total Page:16

File Type:pdf, Size:1020Kb

Hard Disk Manager PARAGON Hard Disk Manager VERSION 17 User Manual Paragon Technologie GmbH Systemprogrammierung Leo-Wohleb-Straße 8 79098 Freiburg, Germany Tel. +49 (0) 761 59018201 Fax +49 (0) 761 59018130 Web www.paragon-software.com E-Mail [email protected] 2 Table of Contents Product Overview ............................................................................................................................... 4 Getting Started ................................................................................................................................... 5 Product Components .................................................................................................................................... 5 System Requirements ................................................................................................................................... 5 Installation ................................................................................................................................................... 6 First Start ..................................................................................................................................................... 6 Changing Program Settings ............................................................................................................... 10 Application Settings ............................................................................................................................................. 10 E-mail Settings ..................................................................................................................................................... 10 Notifications Settings .......................................................................................................................................... 11 Reporting Settings ............................................................................................................................................... 11 Building Recovery Media .................................................................................................................. 13 Booting from Recovery Media .......................................................................................................... 17 Protecting System and Data .............................................................................................................. 19 Backup Tasks .............................................................................................................................................. 19 Configuring Backup Job ....................................................................................................................................... 19 Managing Backup Jobs ........................................................................................................................................ 30 Pinning a Backup Image ...................................................................................................................................... 31 Checking Backup Integrity ................................................................................................................................... 32 Hyper-V Backup technology ................................................................................................................................ 33 Restore Tasks ............................................................................................................................................. 34 Exporting Individual Files from Backup ............................................................................................................... 34 Restore Hyper-V machines .................................................................................................................................. 36 Restoring a File-level Backup ............................................................................................................................... 37 Restoring a Volume-level Backup ........................................................................................................................ 40 Restoring from an Isolated Backup Image .......................................................................................................... 42 Mounting a Backup Image ................................................................................................................................... 43 Restoring a Failed System ................................................................................................................................... 45 Fixing Boot Problems ........................................................................................................................................... 48 Transferring Files between Storages ................................................................................................................... 50 Managing Partitions and Disks .......................................................................................................... 52 Basic Partitioning Tasks .............................................................................................................................. 52 Creating a Partition ............................................................................................................................................. 52 Formatting a Partition ......................................................................................................................................... 53 Deleting a Partition.............................................................................................................................................. 54 Moving/Resizing a Partition ................................................................................................................................ 55 Undeleting a Partition ......................................................................................................................................... 56 Converting File System ........................................................................................................................................ 57 Changing Volume Label ....................................................................................................................................... 58 Changing Drive Letter .......................................................................................................................................... 59 Hiding/Unhiding Partition ................................................................................................................................... 60 Making Partition Active/Inactive ......................................................................................................................... 60 Updating MBR ..................................................................................................................................................... 60 Getting Disk/Partition Properties ........................................................................................................................ 61 Copyright© 1994-2020 Paragon Software Group. All rights reserved. 3 Complex Partitioning Tasks ......................................................................................................................... 62 Splitting a Partition .............................................................................................................................................. 62 Expanding a Partition .......................................................................................................................................... 64 Merging Partitions ............................................................................................................................................... 65 Advanced Partitioning Tasks ....................................................................................................................... 66 Changing Cluster Size .......................................................................................................................................... 66 Converting to Logical/Primary ............................................................................................................................. 66 Changing Serial Number ...................................................................................................................................... 67 Change Primary Slots ........................................................................................................................................... 67 Converting a Partition Table ................................................................................................................................ 69 Editing Disk Sectors ............................................................................................................................................. 70 NTFS Optimization ...................................................................................................................................... 71 Compacting MFT ................................................................................................................................................. 71 Defragmenting MFT ............................................................................................................................................ 72 Partitioning Virtual Disks ...........................................................................................................................
Recommended publications
  • How to Find out the IP Address of an Omron
    Communications Middleware/Network Browser How to find an Omron Controller’s IP address Valin Corporation | www.valin.com Overview • Many Omron PLC’s have Ethernet ports or Ethernet port options • The IP address for a PLC is usually changed by the programmer • Most customers do not mark the controller with IP address (label etc.) • Very difficult to communicate to the PLC over Ethernet if the IP address is unknown. Valin Corporation | www.valin.com Simple Ethernet Network Basics IP address is up to 12 digits (4 octets) Ex:192.168.1.1 For MOST PLC programming applications, the first 3 octets are the network address and the last is the node address. In above example 192.168.1 is network address, 1 is node address. For devices to communicate on a simple network: • Every device IP Network address must be the same. • Every device node number must be different. Device Laptop EX: Omron PLC 192.168.1.1 192.168.1.1 Device Laptop EX: Omron PLC 127.27.250.5 192.168.1.1 Device Laptop EX: Omron PLC 192.168.1.3 192.168.1.1 Valin Corporation | www.valin.com Omron Default IP Address • Most Omron Ethernet devices use one of the following IP addresses by default. Omron PLC 192.168.250.1 OR 192.168.1.1 Valin Corporation | www.valin.com PING Command • PING is a way to check if the device is connected (both virtually and physically) to the network. • Windows Command Prompt command. • PC must use the same network number as device (See previous) • Example: “ping 172.21.90.5” will test to see if a device with that IP address is connected to the PC.
    [Show full text]
  • Disk Clone Industrial
    Disk Clone Industrial USER MANUAL Ver. 1.0.0 Updated: 9 June 2020 | Contents | ii Contents Legal Statement............................................................................... 4 Introduction......................................................................................4 Cloning Data.................................................................................................................................... 4 Erasing Confidential Data..................................................................................................................5 Disk Clone Overview.......................................................................6 System Requirements....................................................................................................................... 7 Software Licensing........................................................................................................................... 7 Software Updates............................................................................................................................. 8 Getting Started.................................................................................9 Disk Clone Installation and Distribution.......................................................................................... 12 Launching and initial Configuration..................................................................................................12 Navigating Disk Clone.....................................................................................................................14
    [Show full text]
  • Problem Solving and Unix Tools
    Problem Solving and Unix Tools Command Shell versus Graphical User Interface • Ease of use • Interactive exploration • Scalability • Complexity • Repetition Example: Find all Tex files in a directory (and its subdirectories) that have not changed in the past 21 days. With an interactive file roller, it is easy to sort files by particular characteristics such as the file extension and the date. But this sorting does not apply to files within subdirectories of the current directory, and it is difficult to apply more than one sort criteria at a time. A command line interface allows us to construct a more complex search. In unix, we find the files we are after by executing the command, find /home/nolan/ -mtime +21 -name ’*.tex’ To find out more about a command you can read the online man pages man find or you can execute the command with the –help option. In this example, the standard output to the screen is piped into the more command which formats it to dispaly one screenful at a time. Hitting the space bar displays the next page of output, the return key displays the next line of output, and the ”q” key quits the display. find --help | more Construct Solution in Pieces • Solve a problem by breaking down into pieces and building back up • Typing vs automation • Error messages - experimentation 1 Example: Find all occurrences of a particular string in several files. The grep command searches the contents of files for a regular expression. In this case we search for the simple character string “/stat141/FINAL” in all files in the directory WebLog that begin with the filename “access”.
    [Show full text]
  • What Is UNIX? the Directory Structure Basic Commands Find
    What is UNIX? UNIX is an operating system like Windows on our computers. By operating system, we mean the suite of programs which make the computer work. It is a stable, multi-user, multi-tasking system for servers, desktops and laptops. The Directory Structure All the files are grouped together in the directory structure. The file-system is arranged in a hierarchical structure, like an inverted tree. The top of the hierarchy is traditionally called root (written as a slash / ) Basic commands When you first login, your current working directory is your home directory. In UNIX (.) means the current directory and (..) means the parent of the current directory. find command The find command is used to locate files on a Unix or Linux system. find will search any set of directories you specify for files that match the supplied search criteria. The syntax looks like this: find where-to-look criteria what-to-do All arguments to find are optional, and there are defaults for all parts. where-to-look defaults to . (that is, the current working directory), criteria defaults to none (that is, select all files), and what-to-do (known as the find action) defaults to ‑print (that is, display the names of found files to standard output). Examples: find . –name *.txt (finds all the files ending with txt in current directory and subdirectories) find . -mtime 1 (find all the files modified exact 1 day) find . -mtime -1 (find all the files modified less than 1 day) find . -mtime +1 (find all the files modified more than 1 day) find .
    [Show full text]
  • Change System Partition Drive Letter
    Change System Partition Drive Letter superfluouslyExogamous Isaiah while sublettingJohn remains atop. aerological Diagnostic and Skippy vatic. pockets chock. Raiding Conway pressured very HowTo Remove the heat Reserved water from Windows. You may unsubscribe at constant time. This is already been copied right place it to lvm and other partitions of the main interface and backup of. If to install device drivers, from drives whose letter needs to be changed, in CONFIG. How should change in drive like from C to common other letter. To beg an existing drive page on a stocking on a mate or convene a. All comments containing links and certain keywords will be moderated before publication. Now persist for available letter and were missing, footer and needs to make sure where applications or in. Does a systems? Against the operating system subsequently changing the quote letter. Shows garbage instead. I don't suggest changing the SRP's permissions on a production computer. Saved hours tearing out. They system partitions with these letters changed, change drive partitioning changes, and a systems may occur when windows on a single partition and you? In the Disk Management window frame can typically right-click to partition the interest cost Change Drive Letters and Paths click bounce and. Stellar Data Recovery Toolkit is an advanced software, trusted by tech. We can fill it might help. Also learn with. They contain partitions like Primary partitions and Logical drives which are typically. Windows for my external USB device like a tame drive or USB stick. Disk Management Console can also provides ability to express drive letters or paths.
    [Show full text]
  • Wikipedia: Design of the FAT File System
    Design of the FAT file system A FAT file system is a specific type of computer file system architecture and FAT a family of industry-standard file systems utilizing it. Developer(s) Microsoft, SCP, IBM, [3] The FAT file system is a legacy file system which is simple and robust. It Compaq, Digital offers good performance even in very light-weight implementations, but Research, Novell, cannot deliver the same performance, reliability and scalability as some Caldera modern file systems. It is, however, supported for compatibility reasons by Full name File Allocation Table: nearly all currently developed operating systems for personal computers and FAT12 (12- many home computers, mobile devices and embedded systems, and thus is a bit version), well suited format for data exchange between computers and devices of almost FAT16 (16- any type and age from 1981 through the present. bit versions), Originally designed in 1977 for use on floppy disks, FAT was soon adapted and FAT32 (32-bit version used almost universally on hard disks throughout the DOS and Windows 9x with 28 bits used), eras for two decades. Today, FAT file systems are still commonly found on exFAT (64- floppy disks, USB sticks, flash and other solid-state memory cards and bit versions) modules, and many portable and embedded devices. DCF implements FAT as Introduced 1977 (Standalone the standard file system for digital cameras since 1998.[4] FAT is also utilized Disk BASIC-80) for the EFI system partition (partition type 0xEF) in the boot stage of EFI- FAT12: August 1980 compliant computers. (SCP QDOS) FAT16: August 1984 For floppy disks, FAT has been standardized as ECMA-107[5] and (IBM PC DOS 3.0) ISO/IEC 9293:1994[6] (superseding ISO 9293:1987[7]).
    [Show full text]
  • Method and Computer System for Integrating a Compression System
    Europäisches Patentamt (19) European Patent Office Office européen des brevets (11) EP 0 650 120 B1 (12) EUROPEAN PATENT SPECIFICATION (45) Date of publication and mention (51) Int. Cl.7: G06F 9/445 of the grant of the patent: 20.09.2000 Bulletin 2000/38 (21) Application number: 94116568.0 (22) Date of filing: 20.10.1994 (54) Method and computer system for integrating a compression system with an operating system Computersystem und -verfahren zur Integration eines Datenkompressionssystems mit einem Betriebssystem Méthode et système informatique pour l'intégration d'un système de compression avec un système d'exploitation (84) Designated Contracting States: (74) Representative: DE FR GB Grünecker, Kinkeldey, Stockmair & Schwanhäusser (30) Priority: 21.10.1993 US 140753 Anwaltssozietät Maximilianstrasse 58 (43) Date of publication of application: 80538 München (DE) 26.04.1995 Bulletin 1995/17 (56) References cited: (73) Proprietor: • COMPUTERS IN LIBRARIES, MAY 1993, USA, MICROSOFT CORPORATION vol. 13, no. 5, ISSN 1041-7915, pages 27-29, Redmond, Washington 98052-6399 (US) XP000671468 DYKHUIS R: "Compression with Stacker and DoubleSpace" (72) Inventor: Slivka, Benjamin W. • PC TECH JOURNAL, MAY 1985, USA, vol. 3, no. Clyde Hill, Washington 98004 (US) 5, ISSN 0738-0194, pages 76-95, XP000677817 MITCHELL S: "Building device drivers" • IBM TECHNICAL DISCLOSURE BULLETIN, vol. 31, no. 1, June 1988, pages 352-354, XP000049709 "CONFIGURABLE BOOT DEVICE AND DRIVE REMAPPING FOR PERSONAL COMPUTERS" Note: Within nine months from the publication of the mention of the grant of the European patent, any person may give notice to the European Patent Office of opposition to the European patent granted.
    [Show full text]
  • Linux Command Line Cheat Sheet by Davechild
    Linux Command Line Cheat Sheet by DaveChild Bash Commands ls Options Nano Shortcuts uname -a Show system and kernel -a Show all (including hidden) Files head -n1 /etc/issue Show distribution -R Recursive list Ctrl-R Read file mount Show mounted filesystems -r Reverse order Ctrl-O Save file date Show system date -t Sort by last modified Ctrl-X Close file uptime Show uptime -S Sort by file size Cut and Paste whoami Show your username -l Long listing format ALT-A Start marking text man command Show manual for command -1 One file per line CTRL-K Cut marked text or line -m Comma-separated output CTRL-U Paste text Bash Shortcuts -Q Quoted output Navigate File CTRL-c Stop current command ALT-/ End of file Search Files CTRL-z Sleep program CTRL-A Beginning of line CTRL-a Go to start of line grep pattern Search for pattern in files CTRL-E End of line files CTRL-e Go to end of line CTRL-C Show line number grep -i Case insensitive search CTRL-u Cut from start of line CTRL-_ Go to line number grep -r Recursive search CTRL-k Cut to end of line Search File grep -v Inverted search CTRL-r Search history CTRL-W Find find /dir/ - Find files starting with name in dir !! Repeat last command ALT-W Find next name name* !abc Run last command starting with abc CTRL-\ Search and replace find /dir/ -user Find files owned by name in dir !abc:p Print last command starting with abc name More nano info at: !$ Last argument of previous command find /dir/ - Find files modifed less than num http://www.nano-editor.org/docs.php !* All arguments of previous command mmin num minutes ago in dir Screen Shortcuts ^abc^123 Run previous command, replacing abc whereis Find binary / source / manual for with 123 command command screen Start a screen session.
    [Show full text]
  • Node and Edge Attributes
    Cytoscape User Manual Table of Contents Cytoscape User Manual ........................................................................................................ 3 Introduction ...................................................................................................................... 48 Development .............................................................................................................. 4 License ...................................................................................................................... 4 What’s New in 2.7 ....................................................................................................... 4 Please Cite Cytoscape! ................................................................................................. 7 Launching Cytoscape ........................................................................................................... 8 System requirements .................................................................................................... 8 Getting Started .......................................................................................................... 56 Quick Tour of Cytoscape ..................................................................................................... 12 The Menus ............................................................................................................... 15 Network Management ................................................................................................. 18 The
    [Show full text]
  • Networking TCP/IP Troubleshooting 7.1
    IBM IBM i Networking TCP/IP troubleshooting 7.1 IBM IBM i Networking TCP/IP troubleshooting 7.1 Note Before using this information and the product it supports, read the information in “Notices,” on page 79. This edition applies to IBM i 7.1 (product number 5770-SS1) and to all subsequent releases and modifications until otherwise indicated in new editions. This version does not run on all reduced instruction set computer (RISC) models nor does it run on CISC models. © Copyright IBM Corporation 1997, 2008. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents TCP/IP troubleshooting ........ 1 Server table ............ 34 PDF file for TCP/IP troubleshooting ...... 1 Checking jobs, job logs, and message logs .. 63 Troubleshooting tools and techniques ...... 1 Verifying that necessary jobs exist .... 64 Tools to verify your network structure ..... 1 Checking the job logs for error messages Netstat .............. 1 and other indication of problems .... 65 Using Netstat from a character-based Changing the message logging level on job interface ............. 2 descriptions and active jobs ...... 65 Using Netstat from System i Navigator .. 4 Other job considerations ....... 66 Ping ............... 7 Checking for active filter rules ...... 67 Using Ping from a character-based interface 7 Verifying system startup considerations for Using Ping from System i Navigator ... 10 networking ............ 68 Common error messages ....... 13 Starting subsystems ........ 68 PING parameters ......... 14 Starting TCP/IP .......... 68 Trace route ............ 14 Starting interfaces ......... 69 Using trace route from a character-based Starting servers .......... 69 interface ............ 15 Timing considerations ........ 70 Using trace route from System i Navigator 15 Varying on lines, controllers, and devices .
    [Show full text]
  • GNU Findutils Finding Files Version 4.8.0, 7 January 2021
    GNU Findutils Finding files version 4.8.0, 7 January 2021 by David MacKenzie and James Youngman This manual documents version 4.8.0 of the GNU utilities for finding files that match certain criteria and performing various operations on them. Copyright c 1994{2021 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled \GNU Free Documentation License". i Table of Contents 1 Introduction ::::::::::::::::::::::::::::::::::::: 1 1.1 Scope :::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 1 1.2 Overview ::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 2 Finding Files ::::::::::::::::::::::::::::::::::::: 4 2.1 find Expressions ::::::::::::::::::::::::::::::::::::::::::::::: 4 2.2 Name :::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 4 2.2.1 Base Name Patterns ::::::::::::::::::::::::::::::::::::::: 5 2.2.2 Full Name Patterns :::::::::::::::::::::::::::::::::::::::: 5 2.2.3 Fast Full Name Search ::::::::::::::::::::::::::::::::::::: 7 2.2.4 Shell Pattern Matching :::::::::::::::::::::::::::::::::::: 8 2.3 Links ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 8 2.3.1 Symbolic Links :::::::::::::::::::::::::::::::::::::::::::: 8 2.3.2 Hard Links ::::::::::::::::::::::::::::::::::::::::::::::: 10 2.4 Time
    [Show full text]
  • Diamondmax™ 2880 91152D8, 91008D7, 90845D6, 90840D6, 90720D5, 90648D5, 90576D4, 90510D4, 90432D3, 90288D2, 90256D2
    This document is a condensed version of the full Product Reference Manual. This version only includes the Maxtor Information about the Product. Information that can be found in the ANSI specification is not included in this document to reduce its over all size. Also eliminated are the Table of Contents and Glossary. This condensed version is created to allow faster downloading from Maxtor's Internet home page and MaxFax services. DiamondMax™ 2880 91152D8, 91008D7, 90845D6, 90840D6, 90720D5, 90648D5, 90576D4, 90510D4, 90432D3, 90288D2, 90256D2 Part #1390/A All material contained herein Copyright © 1998 Maxtor Corporation. DiamondMax™, DiamondMax™ 1280, DiamondMax™ 1750, Diamond- Max™ 2160, DiamondMax™ 2880 and MaxFax™ are trademarks of Maxtor Corporation. No Quibble® Service is a registered trademark of Maxtor Corporation. Other brands or products are trademarks or registered trademarks of their respective holders. Contents and specifications subject to change without notice. All rights reserved. Printed in the U.S.A. 2/98 Corporate Headquarters 510 Cottonwood Drive Milpitas, California 95035 Tel: 408-432-1700 Fax: 408-432-4510 Research and Development Engineering Center 2190 Miller Drive Longmont, Colorado 80501 Tel: 303-651-6000 Fax: 303-678-2165 Revisions Manual No. 1390 R.EV ENC NO SNECTIO DESCRIPTIO DATE AB78892 All Initial release.3/10/98 Before You Begin Thank you for your interest in the Maxtor DiamondMax™ 2880 AT hard disk drives. This manual provides technical information for OEM engineers and systems integrators regarding the installation and use of DiamondMax hard drives Drive repair should be performed only at an authorized repair center. For repair information, contact the Maxtor Customer Service Center at 800-2MAXTOR or 408-432-1700.
    [Show full text]