Difference between revisions of "CLI - Updating system"

 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
시스템을 업데이트 하려면 CLI에서 <code>system update</code> 명령어를 통해서 최신 업데이트 확인 및 업데이트 진행을 할 수 있습니다.
+
If you want to update a system, type the <code>system update</code> command.
 +
 
 
<pre>
 
<pre>
 
LYSH@MyHostName# system update -h
 
LYSH@MyHostName# system update -h
Line 12: Line 13:
 
   -d, --debug  debug
 
   -d, --debug  debug
 
</pre>
 
</pre>
=== Basic Commands ===
+
 
* <code>LYSH@MyHostName# system update</code> 업데이트 서버에서 가장 최신 release파일로 업데이트를 진행합니다.
+
<pre>
=== After Commands ===
+
LYSH@MyHostName# system update // searches a new update package from the imRAD update server and updates.
특정 release 파일로 업데이트를 진행하려면 <code>[release key]</code> 값을 지정하여 업데이트를 진행합니다. 오프라인인 경우 <code>[url/path]</code> 값을 추가로 입력하여 업데이트를 진행합니다.  
+
LYSH@MyHostName# system update 1.2.3 // immediately update with the package version(i.e. 1.2.3)
* <code>LYSH@MyHostName# system update 1.2.3</code> "1.2.3" 버전으로 업데이트를 진행합니다.
+
</pre>
* <code>LYSH@MyHostName# system update 1.2.3 <nowiki>ftp://username@ftphost/userpassword</nowiki></code> ftphost라는 ftp에서 "1.2.3" 버전으로 업데이트를 진행합니다.
+
 
* <code>LYSH@MyHostName# system update 1.2.3 <nowiki>ftp://username@ftphost:222/userpassword</nowiki></code> ftp서버가 기본포트를 사용하지 않는 경우 ftphost뒤에 <code>:</code>로 구분하여 포트번호를 입력합니다.
+
If your system can not access the imRAD update server, you must request a update file and save it into your ftp server.
* <code>LYSH@MyHostName# system update -d</code> debug 버전으로 업데이트를 진행합니다.
+
<pre>
 +
LYSH@MyHostName# system update 1.2.3 <nowiki>ftp://username@your.ftp.server/userpassword</nowiki>
 +
</pre>
 +
{{note|Note that you should not change the name of a update file.}}
 +
 
 +
If your FTP server uses another port, try like this.
 +
<pre>
 +
LYSH@MyHostName# system update 1.2.3 <nowiki>ftp://username@your.ftp.server:222/userpassword</nowiki>
 +
</pre>

Latest revision as of 10:56, 18 May 2021

If you want to update a system, type the system update command.

LYSH@MyHostName# system update -h
usage: system update [-h] [-d] [release key] [url/path]

positional arguments:
  [release key]  enter specific release key number
  [url/path]     url or path

optional arguments:
  -h, --help   show this help message and exit
  -d, --debug  debug
LYSH@MyHostName# system update		// searches a new update package from the imRAD update server and updates.
LYSH@MyHostName# system update 1.2.3	// immediately update with the package version(i.e. 1.2.3)

If your system can not access the imRAD update server, you must request a update file and save it into your ftp server.

LYSH@MyHostName# system update 1.2.3 ftp://username@your.ftp.server/userpassword

Note that you should not change the name of a update file.

If your FTP server uses another port, try like this.

LYSH@MyHostName# system update 1.2.3 ftp://username@your.ftp.server:222/userpassword