ChinaUnix.net
相关文章推荐:

LINUX下的RAW格式文件

Q: 1. What is a raw device? A:raw device, also known as a rawpartition is a disk partition that is not mounted and written by linuxfilesystem (ext2/ext3, reiserfs) or by Oracle Cluster File System(OCFS), but is accessed by a character device driver. It is theresponsibility of the application to organize how the data is writtento the disk partition. [top] Q: 2. How can a raw device be re...

by gunguymadman - Oracle - 2008-10-21 16:04:02 阅读(2593) 回复(0)

相关讨论

int main() { int rawfd=socket(AF_INET,SOCK_raw,0); printf("rawfd file id is %d\n",rawfd); if(rawfd==-1) printf("error init a raw fd, errno is %d\n",errno); } rawfd返回-1.而且errno值是94 ESOCKTNOSUPPORT 不支持原始套接字?

by nuaafantasy - 程序开发 - 2006-06-09 19:45:59 阅读(1042) 回复(2)

svrbuild提示 unable to access /dev/raw/raw1,问题是raw1和rawctl我都改成是sybase 的了,还有什么地方需要调整吗? rhel 3u5 + sybase12.5.3 多谢!

by vct00 - Sybase - 2005-12-20 20:55:16 阅读(1832) 回复(4)

怎样在linux打开chm格式文件?用什么软件??

by wzhao1981 - 桌面与办公 - 2006-04-15 12:58:34 阅读(1651) 回复(8)

如题?我的xchm老是要异常退出!

by cnhzcy14 - Linux论坛 - 2004-01-17 17:26:40 阅读(661) 回复(1)

我有一大批ansi格式的字符文件,谁可以给个shell将他们能转成utf8格式 谢谢!!谢谢 (RedHat linux 9.0)

by mezilla - Shell - 2005-04-25 23:25:12 阅读(3754) 回复(2)

系统:rd linux 9.0 文件常常会有 ^M /r 等不希望有的符号. :cry:

by guangzongy - Shell - 2004-11-19 11:46:20 阅读(2948) 回复(4)

操作系统:redhat 8。 磁盘阵列(raid5)上有260G左右的数据,文件的格式是ext3。 小弟不小心误操作,删除了磁盘阵列上的分区并进行了格式化,而且写了大概17G的文件,现在想恢复没有格式化前的文件。能恢复多少就多少。 请问各位大虾,有没有人做过如此的恢复。请给些建议。 在线等。否则真的要死人了。大虾们,救救小弟啊。555555

恢复

by Brian Cai - 存储备份 - 2005-11-21 12:07:24 阅读(1314) 回复(1)

操作系统:redhat 8。 磁盘阵列(raid5)上有260G左右的数据,文件的格式是ext3。 小弟不小心误操作,删除了磁盘阵列上的分区并进行了格式化,而且写了大概17G的文件,现在想恢复没有格式化前的文件。能恢复多少就多少。 请问各位大虾,有没有人做过如此的恢复。请给些建议。 在线等。否则真的要死人了。大虾们,救救小弟啊。555555

by Brian Cai - 系统管理 - 2006-11-17 09:51:31 阅读(2273) 回复(10)

操作系统:redhat 8。 磁盘阵列(raid5)上有260G左右的数据,文件的格式是ext3。 小弟不小心误操作,删除了磁盘阵列上的分区并进行了格式化,而且写了大概17G的文件,现在想恢复没有格式化前的文件。能恢复多少就多少。 请问各位大虾,有没有人做过如此的恢复。请给些建议。 在线等。否则真的要死人了。大虾们,救救小弟啊。555555

by Brian Cai - 数据安全 - 2005-12-17 19:44:14 阅读(1841) 回复(5)

我想写一通用的屏幕输入SHELL函数,因此每次通过raw判断是否为回车符号。 同时解决了汉字输入的问题 但不能解决空格、TAB的问题? 代码如: getchar() { savestty=`stty -g` stty raw -echo eval $1=`dd if=/dev/tty bs=1 count=1 2>/dev/null` stty echo stty $savestty } clear tput cup 15 10 echo -e "请输入: \c" while true do getchar char1 if [ "${char1}" != " " -a "${char1}" != " " ];th...

by luopc - Shell - 2006-04-08 19:22:38 阅读(1592) 回复(5)