ChinaUnix.net
相关文章推荐:

Received message too long sftp

我在HP-UX和Solaris的操作系统上,写了一个这样的小程序,如下,当显示i=3408时,程序中断,并提示arguments too long. 但是我在Linux上是没有的,请问如何解决这个问题呢?是csh的版本吗? #!/bin/csh set i = 1 set a = () while ($i <= 4000) echo $i set a = ($a $i) @ i++ end

by 人在深圳混 - Shell - 2008-09-17 09:18:55 阅读(1288) 回复(0)

相关讨论

在aix主机执行ls *LZ_9_890* sh: /usr/bin/ls: 0403-027 The parameter list is too long. 每个文件名的长度为64位长

by wsryyffs - Shell - 2008-05-13 21:55:56 阅读(1573) 回复(1)

find ~ -name "*.log" | xargs -L rm 从三楼的修改了一下. 在使用xargs选项时,究竟是一次获取所有参数还是分批获取参数,以及每一次获取参数的数目,都会根据该命令的选项以及系统类的可调参数来决定. use shell built-in echo command, it is not affected by the number of bytes available for the combined argument list and environment list. echo *.log|xargs rm 已经OK了,谢谢大家。如下: 直接在命令行方式键入下...

by ignu - Solaris文档中心 - 2006-06-28 21:57:09 阅读(992) 回复(0)

我拷贝文件的时候出现argument list too long linux 信息,我怎么办?

by 恋家的老鼠 - Linux论坛 - 2005-04-15 14:39:29 阅读(601) 回复(6)

termcap entry too long the type of your terminal is unknown to the system

by pcliu1967 - AIX - 2004-02-24 15:09:55 阅读(1785) 回复(2)

sco unix 5.06下面ids7.31 TERMCAP=$INFORMIXDIR/etc/termcap;export TERMCAP 换成tctermcap或者Termcap也不行!在$INFORMIXDIR/etc下面只有这 三个文件了~

by sami - Informix - 2003-12-23 11:33:26 阅读(1230) 回复(6)

在使用sendmsg()时出现了,message to long的错误 我msghdr结构体赋值如下: msg->msg_name=(struct sockaddr*)&sa; msg->msg_iov->iov_base=buf + fudge; msg->msg_iov->iov_len=ibufp + len - fudge; msg->msg_iovlen = 1; result = sendmsg (interface -> wfdesc,&msg,0); 我看过内核里面出现message to long的错误,是应为msg->msg_iovlen>1024 才出现的,但现在我的msg_iovlen=1啊。 ...

by luo_hao - 程序开发 - 2006-10-26 16:33:25 阅读(713) 回复(1)

调试了以下以前写的程序,最近忙,没时间调试。对于 MySQL5.0数据库全部采用GBK编码,对于工程也用GBK 在向数据库插入时候先是出现乱码。 用 request.setCharacterEncoding("GBK");获得中文提交。 对于tomcat5.0如果要直接提交中文 like: xxx.jsp?str=中文 将出现乱码,这是因为get方法与post方法不一样。可以修改%tomcat_home%conf\server.xml 中的Connector模块,添加URIEncoding="gbk" 修改如下: port="8080"为默认端口。 存...

by vmoon - MySQL文档中心 - 2007-05-27 17:18:32 阅读(993) 回复(0)

我用的是5.1,昨天把mysql,php,phpmyadmin的字符集都改成utf8后,用load data infile 命令插入数据时总是出现这样的错误提示:data too long for column 'cname' at row 1;网上搜一下,大都说set character_set=utf8之类的,但还是不行,最后找到了一个: 修改my.ini文件,将 sql-mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION 注释掉,ok! 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chin...

by panzt - MySQL文档中心 - 2007-05-24 10:20:30 阅读(1545) 回复(0)

Index created. DROP TABLE Smdr_Netflow_HostToHostApp_Hier * ERROR at line 1: ORA-00972: identifier is too long CREATE TABLE Smdr_Netflow_HostToHostApp_Hier ( * ERROR at line 1: ORA-00972: identifier is too long 0 rows deleted. 1 row created. 0 rows deleted. 1 row created. CREATE INDEX NetflowHostToHostAppHierhiertp0 ON Smdr_Netflow_HostToHostApp_Hier (timeZone...

by tie1982 - Oracle - 2005-12-15 17:52:36 阅读(6983) 回复(5)

[aix]# mkuser apile123456 Error adding "apile123456" : Name is too long. Do anyone know how to add such a user "apile123456" in AIX? I have asked IBM engineer about this , but they say AIX can't add an username logner than 8 chars.. And I have try to add this user in Solaris and RedHat, It's OK......

by apile - AIX - 2005-03-11 12:35:31 阅读(2264) 回复(5)