dev.を含む例文一覧と使い方
該当件数 : 516件
Code Listing4.1: Checking for disk consistency # mke2fs -j -c /dev/hda3 例文帳に追加
コード表示4.1:ディスクの検査 - Gentoo Linux
For instance, to have the boot partition (/dev/sda1 in our example) in ext2 and the root partition (/dev/sda3 in our example) in ext3 (as in our example), you would use:例文帳に追加
例えば、 ブートパーティション(この例では/dev/hda1)をext2に、ルートパーティション(この例では/dev/hda3)をext3(今回の例として)にするには、以下の様にします。 - Gentoo Linux
These two filesystems are found at /dev and sys respectively.例文帳に追加
これは、インストールCDから/devファイルシステムを「bind」マッピングを行うことでできます。 - Gentoo Linux
For instance, to have the boot partition (/dev/sda1 in ourexample) in ext2 and the root partition (/dev/sda3 in our example)in ext3 (as in our example), you would use: 例文帳に追加
例えば、 ブートパーティション(この例では/dev/sda1)をext2に、ルートパーティション(この例では/dev/sda3)をext3(今回の例として)にするには、以下の様にします。 - Gentoo Linux
Note : Only the owner of /dev/console can grab the console output. 例文帳に追加
注意 :コンソール出力をグラブできるのは /dev/console の所有者だけである。 - JM
Moreover, if /dev/tty cannot be opened, the password is read from stdin . 例文帳に追加
さらに、/dev/ttyがオープンできない場合は、パスワードはstdinから読み込まれた。 - JM
/dev Special or device files, which refer to physical devices. 例文帳に追加
/dev物理デバイスを参照しているスペシャルファイルやデバイスファイルの置き場所。 - JM
for further information. /proc/sys/kernel/real-root-dev This file is documented in the kernel source file Documentation/initrd. 例文帳に追加
/proc/sys/kernel/real-root-devこのファイルはカーネルソースファイルDocumentation/initrdに記述されている。 - JM
newfs /dev/ 例文帳に追加
(上記の手順は FreeBSD のスライスが Linux から /dev/hda2という名前で見えていると仮定しています。 - FreeBSD
The status of the sound card may be checked via the /dev/sndstat file: 例文帳に追加
サウンドカードの状態は、/dev/sndstatファイルを使用して確認することができます。 - FreeBSD
The first argument is the device to configure, in this case, /dev/ccd0c. 例文帳に追加
一番目の引数は設定するデバイスです。 この例の場合は /dev/ccd0c です。 - FreeBSD
This lists the appropriate dev value for the devices on the list. 例文帳に追加
リストにあるデバイスに対する適切な devの値がここに示されています。 - FreeBSD
In this case, the CRW device is 1,5,0, so the appropriate input would be dev=1,5,0. 例文帳に追加
この例では CRWデバイスは 1,5,0 なので、適切な入力は dev=1,5,0 となります。 - FreeBSD
Try to mount (e.g. mount /dev/da0a /mnt) the root partition of your first disk. 例文帳に追加
最初のディスクのルートパーティションを mount してみてください(たとえば mount /dev/da0a /mnt)。 - FreeBSD
In other words, changed device files are copied over to /lib/dev-state as soon as the change happens, and are copied over to /dev when booting the system.例文帳に追加
言い替えれば、変更されたデバイス・ファイルは変更が行われたときに/lib/dev-stateへコピーされ、そしてシステムがブートされるとき/devファイルにコピーされます。 - Gentoo Linux
will redirect standard input, standard output and standard error to /dev/null. 例文帳に追加
は、標準入力・標準出力・標準エラーを /dev/null にリダイレクトする。 - JM
function opens /dev/tty (the controlling terminal of the process), outputs the string prompt , 例文帳に追加
関数は/dev/tty(プロセスの制御端末) をオープンし、文字列promptを出力する。 - JM
Typically /dev/initrd is owned by root with mode 0400 (read access by root only). 例文帳に追加
普通、/dev/initrdの所有者はrootであり、モードは 400 (root のみが読み出し可能) である。 - JM
/dev/mouse A commonly used symlink pointing to a mouse device. "SEE ALSO" 例文帳に追加
/dev/mouse一般的にマウスデバイスをさすのに使われるシンボリックリンク関連項目 - JM
flag set can be found via /proc/net/dev . 例文帳に追加
フラグがセットされていないインターフェースの名前は/proc/net/devで見つけることが出来る。 - JM
After a "mount dev path" command, the pathname "path" refers to the root of the file system hierarchy on the device "dev", and no longer to whatever it referred to earlier. 例文帳に追加
"mount dev path" コマンドを実行した後、パス名 "path" はデバイス "dev" 上のファイルシステム階層のルートディレクトリを参照するようになり、以前の位置を参照しない。 - JM
BSD-style pseudo-terminals are provided as pre-created pairs, with names of the form /dev/ptyXY (master) and /dev/ttyXY (slave), where X is a letter from the 16-character set [p-za-e], and Y is a letter from the 16-character set [0-9a-f]. 例文帳に追加
BSD 風の擬似端末はあらかじめ作成されたペアとして提供される。 その名前は/dev/ptyXY(マスタ側)、/dev/ttyXY(スレーブ側) である。 - JM
The file /dev/tty is a character file with major number 5 and minor number 0, usually of mode 0666 and owner. 例文帳に追加
/dev/tty ファイルは、メジャー番号 5、マイナー番号 0 のキャラクターデバイスである。 - JM
On a UNIX-like system this will query /dev/urandom, and on Windows it will use CryptGenRandom.例文帳に追加
Unix系のシステムでは /dev/urandom への問い合わせを行い、Windows では CryptGenRandom を使います。 - Python
Code Listing4.9: Mounting the filesystem # mount /dev/hdaX /mnt/gentoo 例文帳に追加
コード表示4.9:ファイルシステムのマウント - Gentoo Linux
Code Listing4.1: Binary package backup # quickpkg dev-db/mysql 例文帳に追加
コード表示3.1:バイナリーパッケージバックアップ - Gentoo Linux
Specifies the device through which the mouse can be accessed.例文帳に追加
一般的な設定は "/dev/mouse" である。 - XFree86
In the Hardware Setup section, we identified the port and the relevant /dev directory entry that FreeBSD will use to communicate with the printer. 例文帳に追加
「ポート用エントリを /dev に追加する」では、FreeBSDでプリン タとの通信に使用される /devディレクトリ内のエントリを特定します。 - FreeBSD
livecd linux # cd /etclivecd etc # nano -w fstab/dev/sda1 /boot ext2 noauto,noatime 1 2/dev/sda3 / ext3 noatime 0 1/dev/sda2 none swap sw 0 0 Configure your network in /etc/conf.d/net. 例文帳に追加
/etc/conf.d/hostnameと/etc/conf.d/domainnameを編集し、rc-updateadddomainnamedefaultを実行して、ネットワークを設定するために/etc/conf.d/netを編集します。 - Gentoo Linux
The third serial port, sio2 (see sio(4) , known as COM3 in DOS), is on /dev/cuad2 for dial-out devices, and on /dev/ttyd2 for dial-in devices. 例文帳に追加
3 番目のポート sio2 (sio(4) をご覧ください。 DOSでは、COM3 と呼ばれます。 - FreeBSD
In FreeBSD, you access each serial port through an entry in the /dev directory. 例文帳に追加
FreeBSDでは、/dev ディレクトリ内のエントリを介してシリアルポートへのアクセスがおこなわれます。 - FreeBSD
Note: As of now, there are two versions of gentoolkit: app-portage/gentoolkit and app-portage/gentoolkit-dev.例文帳に追加
注意:現在のところ、gentoolkitにはapp-portage/gentoolkitとapp-portage/gentoolkit-devの二つのバージョンがあります。 - Gentoo Linux
Since the old X configurations typically reference /dev/mouse or /dev/psaux then you may get an error similar to the one shown below when you attempt to start X11:例文帳に追加
古いXの設定は一般的に/dev/mouseか/dev/psauxを参照しているので、X11を起動しようとした時に以下のようなエラーが表示されるかもしれません。 - Gentoo Linux
When a process opens /dev/ptmx, it gets a file descriptor for a pseudo-terminal master (PTM), and a pseudo-terminal slave (PTS) device is created in the /dev/pts directory. 例文帳に追加
プロセスが /dev/ptmx をオープンすると、そのプロセスには擬似端末マスタ (pseudo-terminal master; PTM) へのファイル・ディスクリプタが返され、/dev/ptsディレクトリに擬似端末スレーブ (pseudo-terminal slave; PTS)デバイスが作成される。 - JM
Use the package manager or the command line to install the amp-dev package. 例文帳に追加
パッケージマネージャーまたはコマンド行を使用して、amp-dev Web Stack パッケージをインストールします。 - NetBeans
(Assuming your IPv6 interface is eth0)# ip route add 3ffe:abcd:1234:9876::/64 via 2001:470:1f00:296::1 dev eth0 例文帳に追加
コード表示7.9:iprouteの使用 - Gentoo Linux
# syslinux /dev/sdc1 Important: You will need to rerun syslinux /dev/sdc1 each time you modify the syslinux.cfg file for the configuration changes to take affect.例文帳に追加
重要:syslinux.cfgファイルを修正都度、設定変更を有効にするためにsyslinux/dev/sda1を再度実行する必要があります。 - Gentoo Linux
then dev specifies the major and minor numbers of the newly created device special file; otherwise it is ignored. 例文帳に追加
のとき、devには作成するデバイススペシャルファイルのメジャー番号とマイナー番号を指定する。 それ以外の場合はdevは無視される。 - JM
It will ensure that whomever logs in on /dev/ttyv0 will own the console. 例文帳に追加
そうすると、 /dev/ttyv0 からログインしたユーザがコンソールを所有することになるでしょう。 - FreeBSD
Another quick way to test the card is sending data to /dev/dsp, like this: 例文帳に追加
手っ取り早くカードをテストするには、 /dev/dspデバイスにデータを送ってみてください。 - FreeBSD
The first parallel port is ppc0 to FreeBSD; the second is ppc1, and so on. 例文帳に追加
FreeBSDでは最初のポートは /dev/ppc0、 二番目 /dev/ppc1 であり、 三番目以降も同様に続きます。 - FreeBSD
If you do not specify a lf capability, LPD uses /dev/console as a default. 例文帳に追加
項目 lf が指定されていない場合、LPD はデフォルトのログファイルとして /dev/console を使います。 - FreeBSD
For example, if you want to mount the CDROM device, /dev/cd0, under /mnt, you would execute:# 例文帳に追加
たとえば /dev/cd0cの CDROM デバイスを /mnt にマウントしたい場合は、以下のように実行します。 # - FreeBSD
For the purposes of this example, a new hard drive partition has been added as /dev/ad4s1c. 例文帳に追加
この例では、新しいハードドライブは /dev/ad4s1cパーティションに 加えられたものとします。 - FreeBSD
# mount /dev/fd0 /floppy # cd /floppy; ./parted [drive you wish to operate on](parted) print Disk geometry for /dev/hdb: 0.000-9787.148 megabytesDisk label type: msdosMinor Start End Type Filesystem Flags1 0.031 2953.125 primary ntfs3 2953.125 3133.265 primary linux-swap2 3133.266 5633.085 primary ext34 5633.086 9787.148 extended5 5633.117 6633.210 logical6 6633.242 9787.148 logical ext3(parted) help resize resize MINOR START END resize filesystem on partition MINOR 例文帳に追加
#cd/floppy;./parted[操作するドライブ] - Gentoo Linux
To do this,you will need to "bind mount" these filesystems from the Installation CD's root to the /dev and /sys mount points inside the chroot.If you have already bind mounted these filesystems, there is no need to do it again. Code Listing2.1: Bind-mounting the device and sysfs filesystems例文帳に追加
コード表示2.1: /devファイルシステムをBindマウントする - Gentoo Linux
JESC: Japanese-English Subtitle Corpus映画・海外ドラマ英語字幕翻訳辞書のコンテンツは、特に明示されている場合を除いて、次のライセンスに従います: Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright 1994-2010 The FreeBSD Project. All rights reserved. license |
| Copyright 2001-2010 Gentoo Foundation, Inc. The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license. |
| © 2010, Oracle Corporation and/or its affiliates. Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners. |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
| Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill. The contents of this document are licensed under the GNU Free Documentation License. Copyright (C) 1999 JM Project All rights reserved. |
| Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|
Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)