Posted On March 31, 2019

Xpenology

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Xpenology
1. Download
     a. gnoboot
     b. Synology DSM
     c. Win32DiskImager
     d. Synology Assistant
2. Install
     a. Run Disk Imager -> select, gnoboot.img -> select USB
     b. Connect USB into hardware -> boot, select gnoboot.me -> gnoboot-5.x-xxxx (install/upgrade/downgrade) -> let process loads
     c. Access server using Synology Assistant
     d. Left-click on server -> Install -> Select .pat file -> Confirm install
     e. Log into Synolgy server and create password

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Windows Server Power Settings

powercfg /setactive SCHEME_MINpowercfg /hibernate offpowercfg -L

PowerShell: Install App Using MSI on Remote Computers Via WinRM

# installMSiRemoteComputers.ps1 # version 0.0.1 $computernames='REMOTEPC001','REMOTEPC002' $thisMsiFile='C:\Temp\something.msi' $appName='testapp' $desiredVersion='1.0' $maxWaitSeconds=120 function installMsiOnRemoteComputers($computernames,$msiFile,$appName,$desiredVersion,$maxWaitSeconds){ function installMsiOnRemoteComputer{ param(…

Linux: Creating Soft Links as Directories

Optional test: create a soft-link for directory as hard-links are not allowed source=/nfs-share/linux03/docker/containers destinationdirectory=/var/lib/docker sudo…