11-01-2002
Here's what I'm getting:
# lssf /dev/rmt/c1t4d0D1600
tape2 card instance 1 SCSI target 4 SCSI LUN 0 at&t 1600 bpi 9 track at addr
10/4/8.4.0 /dev/rmt/c1t4d0D1600
and
# lssf /dev/rmt/c1t4d0wD1600b
tape2 card instance 1 SCSI target 4 SCSI LUN 0 berkeley wait 1600 bpi 9 track at
address 10/4/8.4.0 /dev/rmt/c1t4d0wD1600b
8 More Discussions You Might Find Interesting
1. SCO
After booting from the N1 floppy I see:
kernel: WARNING: No floating point emulator found in /etc/emulator (0 Replies)
Discussion started by: eugrus
0 Replies
2. UNIX for Advanced & Expert Users
All,
Is there any command or method by which we can track changes in a file in Unix (Something similar to track changes in a word document).
I know there is CVS which is used to store code changes and track changes in the code. But other than CVS any way to find out changes done in a file... (1 Reply)
Discussion started by: rahulrathod
1 Replies
3. UNIX for Dummies Questions & Answers
Like the topic says, does anyone know if it is possible to check to see when an FTP only user has logged in? Because the shell is /bin/false and they are only using FTP to access the system doing a "finger" or "last" it says they have never logged in.
Is there a way to see when ftp users log in... (1 Reply)
Discussion started by: LordJezo
1 Replies
4. Shell Programming and Scripting
dear all ,
I m new to shell programming and I need your help.
Actually i want to keep track of all the commands executed in a bash prompt of users ,
very much in same manner as it is displayed when we run "history" command.
now the users are smart enough as they delete their history by... (6 Replies)
Discussion started by: xander
6 Replies
5. Shell Programming and Scripting
Guys I am trying to install the pkg using the follwoing script.
Trying to run the script from one machine to other machines with the follwoing code.
Now my problem is, when I use scp command on the remote machine, how do i keep track of filename in some variable or that sort of thing.
... (5 Replies)
Discussion started by: sdosanjh
5 Replies
6. Shell Programming and Scripting
I have a script that conducts some SSH calls and I would like to capture the child info so that I can do a sleep and then a cleanup to make sure they do not stay out there as ghosts.
I was told I could do something like this...
#!/bin/sh
for m = job1, job2, job3
x=1... (4 Replies)
Discussion started by: LRoberts
4 Replies
7. Infrastructure Monitoring
hello all,
i want to keep track of all my devices using snmp, check for intrusion.
any ideas?
T (0 Replies)
Discussion started by: lemseffert
0 Replies
8. UNIX for Dummies Questions & Answers
Hi, i suddenly realized that a directory is deleted unfortunately there are many user have pervilages on this directory
is there a way to track the user who delete this directory
or atleast from now can i enable something so that i can track from now
I think there is way from... (2 Replies)
Discussion started by: crackgeek
2 Replies
LEARN ABOUT DEBIAN
sdl::cdtrack
pods::SDL::CDTrack(3pm) User Contributed Perl Documentation pods::SDL::CDTrack(3pm)
NAME
SDL::CDTrack -- SDL Bindings for structure SDL_CDTrack
CATEGORY
Core, CDROM, Structure
SYNOPSIS
use SDL;
use SDL::CDROM;
use SDL::CD ':status';
use SDL::CDTrack;
SDL::init( SDL_INIT_CDROM );
my $drives = SDL::CDROM::num_drives();
if( $drives > 0 )
{
my $CD = SDL::CD->new(0); #first drive's CD
if($CD)
{
if( $CD->status != CD_TRAYEMPTY )
{
my $track = SDL::CD->track(0);
}
}
}
CONSTANTS
The constants are exported by default. You can avoid this by doing:
use SDL::CDTrack ();
and access them directly:
SDL::CDTrack::SDL_AUDIO_TRACK;
or by choosing the export tags below:
Export tag: ':type'
SDL_AUDIO_TRACK
SDL_DATA_TRACK
METHOD
id
$track->id() # 0-99
Track number
type
$track->type() # SDL_AUDIO_TRACK or SDL_DATA_TRACK
Type of track
length
$track->length()
Length, in frames, of this track
offset
$track->offset()
Frame offset to the beginning of this track
SEE ALSO
SDL::CDROM, SDL::CD
AUTHORS
See "AUTHORS" in SDL.
perl v5.14.2 2012-05-28 pods::SDL::CDTrack(3pm)