亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫(kù)
最近訪問(wèn)板塊 發(fā)新帖
查看: 2110 | 回復(fù): 8
打印 上一主題 下一主題

急! [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2003-03-25 14:31 |只看該作者 |倒序?yàn)g覽
# fuser /
/:        0c       1c      19c      20c      21c      22c      23c      24c     940c    1985c    1408c   25565o    1457c    1422c    1736c     945c     755c     754c     744c    1368c     710c    1565c    1984c     701co     540c    1580c    1394c    1991c    2107c    1634c    2108c    2106c    2109c    1727c    1951c    1983c    1796c    1838c    1982c    1981c    2004c    1998c    1997c    2029c   21062c    6579c   21051c   21349c   21061c   21048c   21065c   20991c   21020c    6837c   21063c   21052c   25578c   25572c   13415o    6578c
請(qǐng)問(wèn)各位大俠,如果數(shù)字表示的是進(jìn)程號(hào),那么“c”、“o”表示的是什么意思?再則:
# fuser /bea
/bea:
在這種情況下,可以u(píng)mount /bea進(jìn)行擴(kuò)展文件系統(tǒng)的操作嗎?

論壇徽章:
0
2 [報(bào)告]
發(fā)表于 2003-03-25 14:36 |只看該作者

急!

試試 fuser -ku /bea
再 umount /bea

論壇徽章:
0
3 [報(bào)告]
發(fā)表于 2003-03-25 14:55 |只看該作者

急!

不好意思,樓上的兄弟,你可能還沒(méi)完全理解我的意思!我知道加ku選項(xiàng)可以殺掉所有使用該文件系統(tǒng)的進(jìn)程。但我現(xiàn)在并不想強(qiáng)行做此操作,不然肯定會(huì)影響業(yè)務(wù)的,我是希望在不影響業(yè)務(wù)的情況下擴(kuò)展該文件系統(tǒng)。所以先用 fuser /bea察看。我就是不敢肯定如下所示
# fuser /bea
/bea: 就一定沒(méi)用戶(hù)進(jìn)程在使用該文件系統(tǒng)!因?yàn)槲译S便在bea上的日志文件看了一下,它是實(shí)時(shí)在寫(xiě)入的

論壇徽章:
0
4 [報(bào)告]
發(fā)表于 2003-03-25 15:08 |只看該作者

急!

如果你umount 時(shí)有進(jìn)程往/bea里寫(xiě)東西時(shí)不就完了嗎?所以最好是在應(yīng)用停了以后進(jìn)單用戶(hù)時(shí)擴(kuò)文件系統(tǒng)。

論壇徽章:
0
5 [報(bào)告]
發(fā)表于 2003-03-25 16:28 |只看該作者

急!

但我這個(gè)系統(tǒng)是24小時(shí)不能停的阿,能看看我提出的第一個(gè)問(wèn)題嗎?

論壇徽章:
0
6 [報(bào)告]
發(fā)表于 2003-03-25 19:18 |只看該作者

急!

雖然我也不知道“c”、“o”表示什么意思,但我想說(shuō)我們也是7×24的系統(tǒng),但總可以在夜深人靜的時(shí)候申請(qǐng)一會(huì)停機(jī)的,/bea也不是vg00的文件系統(tǒng),大可不必進(jìn)入到單用戶(hù)模式,只要保證沒(méi)有別人登到系統(tǒng)里作別的操作,這樣擴(kuò)一個(gè)文件系統(tǒng)還是很快的。

論壇徽章:
0
7 [報(bào)告]
發(fā)表于 2003-03-25 23:24 |只看該作者

急!

[quote]原帖由 "huoniao"]但我這個(gè)系統(tǒng)是24小時(shí)不能停的阿,能看看我提出的第一個(gè)問(wèn)題嗎?[/quote 發(fā)表:


Hi,

According to the man page of "fuser", the following is the explaination of the letter "c" and "o", etc:

The fuser command lists the process IDs of processes that have each specified file open.  For block special devices, all processes using any file on that device are listed.  The process ID can be followed by a letter, identifying how the file is being used.

           c    file is its current directory.

           r    file is its root directory, as set up by the chroot command
                (see chroot(1M)).

           o    It has file open.

           m    It has file memory mapped.

           t    file is its text file.

To extend the file system online (without stop services), you will need to have HP software "B3929BA HP OnLine JFS" installed. Do a "swlist | grep OnLine" to see if you have this installed.

If you have it installed, then do the following (assume you want to extend the /opt/test file system on /dev/vg01/lvol6 to 6GB):
# lvextend -L 6000 /dev/vg01/lvol6
# fsadm -F vxfs -b 6000M /opt/test


If you don't have the OnLine JFS installed, then you have no choice. You have to stop the processes that are using the file system and umount the file system, then to extend:
# fuser -ku /opt/test
# lvextend -L 6000 /dev/vg01/lvol6
# extendfs -F vxfs /dev/vg01/rlvol6
# mount /dev/vg01/lvol6 /opt/test

Hope this helps.

論壇徽章:
0
8 [報(bào)告]
發(fā)表于 2003-03-26 00:22 |只看該作者

急!

advanced JFS can let you extend file system online (without umount file system)

but it is a product that you may not have installed, check it by "man fsadm_vxfs"

論壇徽章:
0
9 [報(bào)告]
發(fā)表于 2003-03-26 15:35 |只看該作者

急!

多謝各位!
您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專(zhuān)區(qū)
中國(guó)互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過(guò)ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP