SunOS basic question


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers SunOS basic question
# 1  
Old 04-25-2007
SunOS basic question

Hello everybodyI have connected an external tape drive onto my Sun Spark station running Sun OS 4.1.3.
since am in the basic elementary stage in Sun OS, can someone answer the below questions pls

1) after connecting the tape drive to a server and rebooting does /dev/st0 show up automatically?
2) how do i find the list of files in the tape. (tar tvf /dev/st0 ???)
3) how can i retrieve files from the tape and put it on my server (tar xvf /dev/st0 ??)

Thanks very much
karthik
# 2  
Old 05-01-2007
1. Load the tape in to the drive
2. Check to see if the tape is in
mt -f /dev/rmt/0 noret
3. Rewind the tape
mt -f /dev/rmt/0 rewind
4. Tar the files to the tape dev with the no rewind option set .
tar -cvf /dev/rmt/0n /opt
mt -f /dev/rmt/0 rewind
5. Now check to see if the tar was successfull. ( What is on the Tape )
6. tar -tvf /dev/rmt/0n

tar ( old vertion ) you can use tar tvf as well

Smilie
# 3  
Old 05-01-2007
Now to find your tape device
cd /dev
look at all the st device files
the tape device should have a lot of diffrent file name eg st0 st0.1
this is to allow for the no rewind device so depending on the drive you have you will have difftent devices
# 4  
Old 05-01-2007
hi

Thanks very much for ur reply.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Question about SunOS version, how to include in C source

Sorry if here is the wrong place to put this question, but for college we develop small programs in C using Solaris. Most of time is OK for us not to document nothing, until now. Every time program is executed must print OS name. Does Solaris has some predefined macros which I can include... (3 Replies)
Discussion started by: solaris_user
3 Replies

2. Shell Programming and Scripting

Basic sed question

Please have a look at below examples. Why do these 3 sed commands deliver the same result? Especially, why are there 4 "x" in the result instead of 3? 1. echo "abc" | sed 's/d*/x/g' xaxbxcx 2. echo "abc" | sed 's/d*/&x/g' xaxbxcx 3. echo "abc" | sed 's/d*/x&/g' xaxbxcx Thanks for... (2 Replies)
Discussion started by: Werner Gross
2 Replies

3. Solaris

Java / SunOS Security question

Hi, I have a question about the Java that comes with the Solaris 9/10 OS. All my boxes are servers, only ssh allowed, no x windows, hardened, firewaled, etc... Their purpose is Oracle DB's and Sun One Dir servers. None of which use the OS version of Java as far as know. Question IS, can... (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

4. Shell Programming and Scripting

basic nc question

i'm doing this in one terminal: nc -lu 7402 and it appears to start listening properly, then in another i do this: echo "hello" | nc -u localhost 7402 and nothing happens on the listening terminal - what am i doing wrong? thanks. (7 Replies)
Discussion started by: peterworth
7 Replies

5. Shell Programming and Scripting

basic question

hi, I have a basic question,, i am in a directory called /intas/OCU_3.9.1/sbin ocuut1@france>mv itsa_tcs itsa_tcs_old mv: itsa_tcs_old: rename: Permission denied i am logging as the owner of the file. when i am doing this i am getting the above error of permission denied. I know... (3 Replies)
Discussion started by: namishtiwari
3 Replies

6. HP-UX

Basic OS question

Could someone tell me the command to find out the OS version which will give 12 character not the 9 characters(which is usually machine id). uname -i gives machine id and uname -a is more comprehensive way to look. Thanks! (4 Replies)
Discussion started by: catwomen
4 Replies

7. UNIX for Dummies Questions & Answers

Really basic question....

Hello all. Let me start off by saying I know a little more then it seems by me asking this question... here goes I have an old 486 box and I want to start messing around with unix. I've been taking classes for 3 or 4 years in c programming in unix, so I am used to the commands and such, but I... (1 Reply)
Discussion started by: robherms
1 Replies

8. UNIX for Dummies Questions & Answers

Very Basic Question

How to know if my AIX 5.2 is running at 64bits? THANKS (5 Replies)
Discussion started by: GermanSkull
5 Replies

9. UNIX for Dummies Questions & Answers

basic question

hey...when i type who...what does "pts" field mean??? eg pts 0 etc (1 Reply)
Discussion started by: urwannabefriend
1 Replies

10. UNIX for Dummies Questions & Answers

basic question

I have some basic doubts. Can someone clarify in this forum? 1)if then eval ' tset -s -Q -m ':?hp' ' else eval ' tset -s -Q ' what does it exactly mean in .profile? 2) what are 'nobody' and 'noaccess' usernames in /etc/passwd file. ... (3 Replies)
Discussion started by: asutoshch
3 Replies
Login or Register to Ask a Question