BLOG ARTICLE 리눅스 | 2 ARTICLE FOUND

  1. 2007/02/23 ProLiant Support Pack for Red Hat Linux
  2. 2006/12/09 rename: 리눅스에서 파일이름 바꾸기

HP 서버 통합드라이버/관리툴 ProLiant Support Pack, 줄여서 PSP 의 레드햇 리눅스용 링크입니다.

PSP 버전별로 지원하는 리눅스 버전이 다르기 때문에 맞는 버전을 설치해야 합니다. 예를들어 PSP 7.70이 최신버전이지만, 이 버전에서는 레드햇 엔터프라이즈 3과 4만 지원하므로 2.1 사용자는 설치할 수 없습니다. 마찬가지로 레드햇 7.3 버전 사용자라면 PSP 7.70 을 설치할 수 없습니다.

ProLiant Support Pack for Red Hat Linux 7.3
version 7.10 B   (1 Aug 04)
http://h18007.www1.hp.com/support/files/server/us/download/21063.html

ProLiant Support Pack for Red Hat Linux 8.0
version 7.10 B   (1 Aug 04)
http://h18023.www1.hp.com/support/files/server/us/download/21065.html

ProLiant Support Pack for Red Hat Enterprise Linux 2.1
version 7.30   (4 May 05)
http://h18023.www1.hp.com/support/files/server/us/download/22265.html

ProLiant Support Pack for Red Hat Enterprise Linux 3
version 7.70   (19 Dec 06)
http://h18023.www1.hp.com/support/files/server/us/download/25258.html

ProLiant Support Pack for Red Hat Enterprise Linux 4
version 7.70   (19 Dec 06)
http://h18023.www1.hp.com/support/files/server/us/download/25259.html

이올린에 북마크하기(0) 이올린에 추천하기(0)

Rename 은 리눅스에서 파일 이름을 쉽게 바꿔줍니다.

RENAME(1)           Linux Programmer's Manual           RENAME(1)
NAME
      rename - Rename files
SYNOPSIS
      rename from to file...
DESCRIPTION
      rename will rename the specified files by replacing the first occurrence of from in
      their name by to.
      For example, given the files foo1, ..., foo9, foo10, ..., foo278, the commands
             rename foo foo0 foo?
             rename foo foo0 foo??
      will turn them into foo001, ..., foo009, foo010, ..., foo278.
      And
             rename .htm .html *.htm
      will fix the extension of your html files.
SEE ALSO
      mv(1)

예제 입니다.

1.  foo1, ... , foo9, foo10, ..., foo278 을 foo001, ..., foo009, foo010, ..., foo278로 바꾸려면
  --> rename foo foo0 foo? 하고나서 rename foo foo0 foo??

2. *.htm 파일을 *.html 로 바꾸려면
  --> rename .htm .html *.htm

이올린에 북마크하기(0) 이올린에 추천하기(0)