doc/ja_JP.eucJP/man/man8/kldunload.8
SUZUKI Koichi eddc7bb959 Catch up with 5.4-Release.
apm.8, apmd.8, and wlconfig.8 will be deleted after repocopy is finished.

Submitted by: koizumistr at minos ocn ne jp
Coordinated by: Nobuyuki Koganemaru <n-kogane at syd odn ne jp>
2005-07-11 13:32:04 +00:00

87 lines
2.5 KiB
Groff

.\"
.\" Copyright (c) 1997 Doug Rabson
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" %FreeBSD: src/sbin/kldunload/kldunload.8,v 1.13.2.2 2005/02/12 15:18:10 brueffer Exp %
.\" $FreeBSD$
.\"
.\" WORD: unload アンロードする
.\"
.Dd July 13, 2004
.Dt KLDUNLOAD 8
.Os
.Sh 名称
.Nm kldunload
.Nd カーネルからファイルをアンロードする
.Sh 書式
.Nm
.Op Fl f
.Op Fl fv
.Fl i Ar id
.Nm
.Op Fl f
.Op Fl fv
.Op Fl n
.Ar name
.Sh 解説
.Nm
ユーティリティはすでに
.Xr kldload 8
でロードされているファイルをアンロードします。
.Pp
以下のオプションが利用できます :
.Bl -tag -width ".Fl n Ar name"
.It Fl f
アンロードを強制します。
これはモジュールからの
.Dv MOD_QUIESCE
エラー戻り値を無視し、
また、モジュールが現在使用中であってもアンロードすることを含みます。
取り扱いはユーザに一任されています。
.It Fl v
出力を冗長にします。
.It Fl i Ar id
指定した ID のファイルをアンロードします。
.It Fl n Ar name
指定した名前のファイルをアンロードします。
.It Ar name
指定した名前のファイルをアンロードします。
.El
.Sh 診断
.Nm
ユーティリティは、成功時には状態 0 で、
エラー発生時には 0 以外の状態で終了します。
.Sh 関連項目
.Xr kldunload 2 ,
.Xr kldload 8 ,
.Xr kldstat 8
.Sh 歴史
.Nm
ユーティリティは
.Fx 3.0
ではじめて登場し、
.Xr lkm 4
インタフェースを置き換えました。
.Sh 作者
.An Doug Rabson Aq dfr@FreeBSD.org