ChinaUnix.net
相关文章推荐:

ulimit core

高手指教: 解决的问题: 现有一程序P 长期在服务器上运行,目前经常是每1天死掉一次(段错误)。 目前解决方法: 用SecureCRT开一个终端,并在服务其上设置ulimit -c nulimited,然后启动程序P。用ulimite -a 命令查询结果如下: core file size (blocks, -c) unlimited data seg size (kbytes, -d) unlimited file size ...

by LoveForLinux - C/C++ - 2008-04-12 12:39:34 阅读(6855) 回复(8)

相关讨论

aix 系统: 最近我在运行程序的时候出现core文件,大小是282468003 应该是字节了,就是282M。 但是我在“dbx 我的程序 core”调试时 出现: Type 'help' for help. [using memory image in core] reading symbolic information ... Illegal instruction (illegal opcode) in . at 0x0 ($t1) warning: Unable to access address 0x0 from core (dbx) where .() at 0x0 (dbx) 是core不完整,我在ulimit -a 查看时 :coredump(bl...

by larace - AIX - 2007-09-21 21:23:36 阅读(6937) 回复(4)
by bluesky339 - Linux论坛 - 2004-10-30 13:24:36 阅读(703) 回复(0)

系统为redhat 8 我已经配置好ulimit,如下显示: [kevin@localhost t10]$ grep ulimit /etc/profile ulimit -S -c 0 > /dev/null 2>&1 [kevin@localhost t10]$ ulimit -a core file size (blocks, -c) unlimited data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max locked memory (kbytes, -l) unlimited max memory size (kbytes, -m) unlimited open files ...

by 橡皮 - C/C++ - 2005-12-06 16:23:50 阅读(2858) 回复(6)

Nazgul@AIX> pg /etc/security/limits * * Sizes are in multiples of 512 byte blocks, CPU time is in seconds * * fsize - soft file size in blocks * core - soft core file size in blocks * cpu - soft per process CPU time limit in seconds * data - soft data segment size in blocks * stack - soft stack segment size in blocks * rss - soft real memory usage in blocks * no...

by redegao - AIX文档中心 - 2007-02-27 18:49:10 阅读(1087) 回复(0)

如何 永久修改一个普通用户的 ulimit -n 10240

by qinyd - Solaris - 2009-11-16 11:24:57 阅读(1934) 回复(2)

再解压一个.tar.Z的文件的时候报这个错 A file cannot be larger than the value set by ulimit.

by heidou - AIX - 2007-12-24 09:37:46 阅读(2645) 回复(4)

操作系统为每个进程维护一个所打开文件的数组,进程能够打开的文件与此数组 的大小有关.此数组的大小由两个系统变量限制: rlim_fd_max , rlim_fd_cur, 这两个变量可以用limit或ulimit 命令察看和修改,要扩大rlim_fd_max需要 root权限,rlim_fd_cur不能超过rlim_fd_max. 编程时则有库函数 getrlimit 和 setrlimit 可以使用. 另外一种改法是在 /etc/system文件中修改. 如果是 调用stdio函数打开文件,则还有另外一种限制,32位内核...

by rabbitdan - Solaris - 2003-12-18 18:01:31 阅读(1340) 回复(2)

:roll: 我在unixware 7.0.1下install oracle8.0.5,有些product提示無法安裝。退出oracle install時,其提示: result: your ulimit is not as high as 2113674. in order to install oracle ,you must either increase the ulimit of your system to 2113674 or use the osh program supplied by oracle. (我在設置.profile文件時候,其中有一項內容, ulimit=2113674) 知道是什麼原因嗎?

by th0806 - 其他UNIX - 2003-07-30 11:15:20 阅读(1913) 回复(9)

我想看C编译的时候产生的core文件,在unix或者nt下有什么软件吗?

by goldeneye - C/C++ - 2003-09-13 09:56:33 阅读(814) 回复(3)

HPUX 11.11 非root用户下,执行 $ulimit -a time(seconds) unlimited file(blocks) unlimited data(kbytes) 1048576 stack(kbytes) 8192 memory(kbytes) unlimited coredump(blocks) 4194303 nofiles(descriptors) 10240 如果想要修改该用户环境下nofiles的值为20480,执行命令后报错 $ ulimit -n 20480 sh: ulimit: The specified value exceeds the user's allowable limit. 经测试,...

by woai210 - HP-UX - 2009-12-04 17:18:01 阅读(7744) 回复(1)