/dev/hd* ?? & HTFS .... What is this stuff?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers /dev/hd* ?? & HTFS .... What is this stuff?
# 1  
Old 07-03-2002
Data /dev/hd* ?? & HTFS .... What is this stuff?

Code:
# grep "Jul  3" syslog.messages | more
Jul  3 00:16:03 www3 CPU3: NOTICE: HTFS: No space on dev hd (1/42)
Jul  3 00:16:08 www3 CPU3: NOTICE: HTFS: No space on dev hd (1/42)
Jul  3 00:17:01 www3 CPU2: NOTICE: HTFS: No space on dev hd (1/42)
Jul  3 00:17:06 www3 syslogd: /usr/adm/debug: No space left on device
Jul  3 00:17:11 www3 CPU2: NOTICE: HTFS: No space on dev hd (1/42)
Jul  3 00:17:11 www3 CPU2: NOTICE: HTFS: No space on dev hd (1/42)
Jul  3 00:18:27 www3 CPU3: NOTICE: HTFS: No space on dev

Can anyone please explain what all this means and what I can do to resolve it.

Of what I could find ...
Code:
# pwd ; ls -l /dev/hd*
/dev
brw-------   1 sysinfo  sysinfo    1,  0 Jun  8  1999 /dev/hd00
brw-------   1 sysinfo  sysinfo    1, 15 Jun  8  1999 /dev/hd01
brw-------   1 sysinfo  sysinfo    1, 23 Jun  8  1999 /dev/hd02
brw-------   1 sysinfo  sysinfo    1, 31 Jun  8  1999 /dev/hd03
brw-------   1 sysinfo  sysinfo    1, 39 Jun  8  1999 /dev/hd04
brw-------   1 sysinfo  sysinfo    1, 47 Jun  8  1999 /dev/hd0a
brw-r-----   1 dos      sysinfo    1, 48 Jun  8  1999 /dev/hd0d
brw-------   1 sysinfo  sysinfo    1, 64 May 24  2000 /dev/hd10
brw-------   1 sysinfo  sysinfo    1, 79 May 24  2000 /dev/hd11
brw-------   1 sysinfo  sysinfo    1, 87 May 24  2000 /dev/hd12
brw-------   1 sysinfo  sysinfo    1, 95 May 24  2000 /dev/hd13
brw-------   1 sysinfo  sysinfo    1,103 May 24  2000 /dev/hd14
brw-------   1 sysinfo  sysinfo    1,111 May 24  2000 /dev/hd1a
brw-r-----   1 dos      sysinfo    1,112 May 24  2000 /dev/hd1d
#


Last edited by Cameron; 07-03-2002 at 01:45 AM..
# 2  
Old 07-03-2002
It looks like one of your hard drives has reached 100% capacity.
Check your disk usage possibly using the df command (man df for further info)

HTFS - High Throughput File System File system - I could not find much on this but then again, I don't know what your OS is. That may help in searching for answers.

If you do a search on goggle for htfs you will find some information but it's very sparse.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Housekeeping null 2>&1 in /dev

Hello, Does anyone know how to housekeeping the null 2>&1 file in /dev? its fill up my system, please help. Thanks :b: (3 Replies)
Discussion started by: only
3 Replies

2. AIX

Size of file /dev/./null 2>&1

Hello Can I just remove/delete flile ? rw-r--r-- 1 root system 2385088512 Jun 30 21:25 /dev/null 2>&1 size of this flile is 2274.75 m and fill up my filesystem: Filesystem MB blocks Used Free %Used Mounted on /dev/hd4 2560.00 2558.59 1.41 100% / (10 Replies)
Discussion started by: primo102
10 Replies

3. AIX

AIX & TAR related stuff

This thread is about using tar & other compression utilities on AIX ; 1. Find out which version of tar you are using thanks to bakunin >what $(which tar) /usr/bin/tar: 61 1.14 src/bos/usr/ccs/lib/libc/__threads_init.c, libcthrd, bos53 0 7/11/00 12:04:14 10 ... (21 Replies)
Discussion started by: filosophizer
21 Replies

4. UNIX for Dummies Questions & Answers

/dev/null 2>&1 Versus /dev/null 2>1

How are these two different? They both prevent output and error from being displayed. I don't see the use of the "&" echo "hello" > /dev/null 2>&1 echo "hello" > /dev/null 2>1 (3 Replies)
Discussion started by: glev2005
3 Replies

5. Shell Programming and Scripting

Difference between ">/dev/null 2>&1" and "2>&1 >/dev/null"

Does >/dev/null 2>&1 and 2>&1 >/dev/null mean the same? (4 Replies)
Discussion started by: proactiveaditya
4 Replies

6. UNIX for Advanced & Expert Users

NOTICE: HTFS: No space on dev hd (1/42)

If somebody solve this error please help me! Thanks in advance! :confused: (7 Replies)
Discussion started by: FCollet
7 Replies

7. UNIX for Dummies Questions & Answers

Warning: HTFS: bad dir inode 62730 on HTFS dev hd (1/42)

Hello all. I am receiving this message on the console of a SCO Openserver 5.0.7 server. The hardware is IBM, running mirrored SCSI drives with a hot-swap spare off of an IBM Serveraid controller. I suspect that some permutation of fsck can help me resolve whatever is causing the error, but I am... (0 Replies)
Discussion started by: DoublePanic
0 Replies

8. UNIX for Dummies Questions & Answers

/dev/null 2>&1 question

Hi, suppose you have the following line at your crontab : 5 * * * * /usr/mine/script > /dev/null 2>&1 now i understood that the " > /dev/null 2>&1 outputs both Standard outpout and Standard Error messages to the /dev/null device or file... the first part , " > /dev/null " transfers... (1 Reply)
Discussion started by: BAM
1 Replies

9. UNIX for Dummies Questions & Answers

Mac OS X & Web Dev

Could someone recommend a good book? Regarding Unix and Mac os X? I know the OS is new, but Unix ain't. I would like to know more about setting up the webserver on my machine. All the HTML works fine, it's just when i try to execute a cgi, php or a pl script.. :( I have tried and tried to... (2 Replies)
Discussion started by: Chojin
2 Replies
Login or Register to Ask a Question