This topic created in 4374 days ago, the information mentioned may be changed or developed.
如题,
百度 google了 各种方面,还是搞不定
find ./ -name '*.jpg' -exec convert -quality 90 -resize "300x300>" {} {} \;
批量裁切大量图片 N万张
我在另一台vps上,裁切就没有问题。
请教怎么解决?
3 replies • 2014-06-06 09:57:17 +08:00
 |
|
1
Livid Jun 6, 2014
看起来像是 ulimit 的某个限制被触及了。
|
 |
|
2
riaqn Jun 6, 2014
man pthread_create
EAGAIN Insufficient resources to create another thread, or a system-imposed limit on the number of threads was encountered. The latter case may occur in two ways: the RLIMIT_NPROC soft resource limit (set via setrlimit(2)),which limits the number of process for a real user ID, was reached; or the kernel's system-wide limit on the number of threads, /proc/sys/kernel/threads-max, was reached.
|