文章分类 | 推荐文章 | 最新文章 | 热点文章 | 最新软件 | 精品软件 | 下载排行 | 推荐下载 | 免费看大片 | WPS | 杀毒软件
清风网络
首 页 软件下载 网络学院 数码学院
QQ 电脑入门 游戏 操作系统 图形处理 办公软件 媒体动画 精文荟萃 工具软件 网络编程 程序开发 网络技术 认证考试 网站建设 文章专栏
当前位置:清风网络学院程序开发OracleSection 6. Solutions to common miscellaneous problems
精品推荐
特别推荐
·常用数据库比较
·ODBC API常用函数诠释
·提高ORACLE数据库的查询统计速度
·细化解析:Oracle使用的hints调整机制
·解析Oracle/Oracle Forms 的多用途代码
·从Oracle的FORM中调用REPORT的实用技巧
·Oracle SQL精妙SQL语句讲解
·ORACLE学习笔记--性能优化四
·ORACLE常用傻瓜问题1000问
·ORACLE常见错误代码的分析与解决之二
·深刻理解Oracle数据库的启动和关闭
·监控Oracle数据库的常用shell脚本
·Oracle在Solaris下的性能与调整简介
·通俗解说ORACLE
·数据库安全性策略
热点TOP10
·详细介绍ORACLE sqlplus命令
·ORACLE常用傻瓜问题1000问
·我的oracle笔记四(DBA管理)
·Oracle SQL精妙SQL语句讲解
·Oracle Tuning (Oracle 性能调整)的一些总结
·我的oracle笔记一(sql语句方面)
·程序员如何掌握计算机英语
·用正则表达式函数验证身份证号码合法性
·oracle数据库 exp/imp命令详解
·性能分析工具的使用
·ORACLE UPDATE 语句语法与性能分析看法
·在Solaris 10 X86上安装Oracle 10g RAC详解 (1)
·ORA-01092: ORACLE 例程终止。强行断开连接
·VMware下RedHat安装Oracle 9i RAC全攻略
·监控Oracle数据库的常用shell脚本
·手工创建oracle数据库
·常用数据库比较
·PL/Sql循序渐进全面学习教程
·在Solaris 10 X86上安装Oracle 10g RAC详解 (2)
·Oracle客户端文件打包

Section 6. Solutions to common miscellaneous problems

日期:2007年7月2日 作者: 查看:[大字体 中字体 小字体]



  Q6.1 Setuid scripts don't seem to work.
   Q6.2 Free memory as reported by free keeps shrinking.
   Q6.3 When I add more memory it slows to a crawl.
   Q6.4 Some programs (e.g. xdm) won't let me log in.
   Q6.5 Some programs let me log in with no password.
   Q6.6 My machine runs very slowly when I run GCC / X / ...
   Q6.7 I can only log in as root.
   Q6.8 My screen is all full of weird characters instead of letters.
   Q6.9 I have screwed up my system and can't log in to fix it.
   Q6.10 Emacs just dumps core.
   Q6.11 I've discovered a huge security hole in rm !
   Q6.12 lpr and/or lpd aren't working.
  
  - -----------------------------------------------------------------------------
  
  Question 6.1. Setuid scripts don't seem to work.
  
  That's right. This feature has been deliberately disabled in the Linux
  kernel because setuid scripts are almost always a security hole. If you
  want to know why read the FAQ for comp.unix.questions.
  
  - -----------------------------------------------------------------------------
  
  Question 6.2. Free memory as reported by free keeps shrinking.
  
  The `free' figure printed by free doesn't include memory used as a disk
  buffer cache - shown in the `buffers' column. If you want to know how
  much memory is really free add the `buffers' amount to `free'.
  
  The disk buffer cache tends to grow soon after starting Linux up, as you
  load more programs and use more files and the contents get cached. It
  will stabilise after a while.
  
  - -----------------------------------------------------------------------------
  
  Question 6.3. When I add more memory it slows to a crawl.
  
  This is quite a common symptom of a failure to cache the additional
  memory. The exact problem depends on your motherboard.
  
  Sometimes you have to enable caching of certain regions in your BIOS
  setup. Look in the CMOS setup and see if there is an option to cache the
  new memory area which is currently switched off. This is apparently most
  common on a 486.
  
  Sometimes the RAMs have to be in certain sockets to be cached.
  
  Sometimes you have to set jumpers to enable the caching.
  
  Some motherboards don't cache all the RAM if you have more RAM per amount
  of cache than they expect. Usually a full 256K cache will solve this
  problem.
  
  If in doubt, check your motherboard manual. If you still can't fix it
  because the documentation is inadequate you might like to post a message
  giving *all* the details - make, model number, date code, etc. so that
  other Linux users can avoid it.
  
  - -----------------------------------------------------------------------------
  
  Question 6.4. Some programs (e.g. xdm) won't let me log in.
  
  You are probably using non-shadow-password programs but are using shadow
  passwords.
  
  If so, you have to get or compile a shadow password version of the
  program(s) in question. The shadow password suite can be found in
  (amongst other places):
   tsx-11.mit.edu:/pub/linux/sources/usr.bin/shadow-*
  This is the source code; you will probably find the binaries in
  .../linux/binaries/usr.bin.
  
  - -----------------------------------------------------------------------------
  
  Question 6.5. Some programs let me log in with no password.
  
  You probably have the same problem as in Q6.4 `Some programs (e.g. xdm)
  won't let me log in.', with an added wrinkle:
  
  If you are using shadow passords you should put an asterisk in the
  password field of /etc/passwd for each account, so that if a program
  doesn't know about the shadow passwords it won't think it's a passwordless
  account and let anyone in.
  
  - -----------------------------------------------------------------------------
  
  Question 6.6. My machine runs very slowly when I run GCC / X / ...
  
  You may not have any swap enabled. You need to enable swapping to allow
  Linux to page out bits of data programs aren't using at the moment to disk
  to make more room for other programs and data. If you don't Linux has to
  keep data in memory and throw away in-memory copies of programs (which are
  paged straight from the filesystem) and so less and less program is in
  memory and everything runs very slowly.
  
  See the Installation HOWTO and the Installation and Getting Started Guide
  [Q2.1 `Where can I get the HOWTOs and other documentation ?
[1] [2] [3] 下一页 




上一篇:关於 Kernel 版本与 Distribution 版本的澄清

下一篇:让quake3在linux下顺利运行

Section 6. Solutions to common miscellaneous problems 相关文章:
·关于JSP Commons FileUpload 组件上传文件的一些总结
·Visual Basic CommonDialog 控件的使用
·Java利器Jakarta Commons(一)
·Section 6. Solutions to common miscellaneous problems
·Apache commons简介
·RFC3423 - XACCTs Common Reliable Accounting for Network Element (CRANE) Protocol Specification Version 1.0
·RFC1371 - Choosing a Common IGP for the IP Internet
·RFC505 - Two solutions to a file transfer access problem
·jakarta commons-net ftp的例子
·Linknet Solutions提供邮件及MSN增值
Section 6. Solutions to common miscellaneous problems 相关软件:
·精算师SOA真题 November2005 Solutions
·精算师SOA真题 May2004 Solutions
·精算师SOA真题 May2001 Solutions
·精算师SOA真题 November2002 Solutions
·精算师SOA真题 May2002 Solutions
·精算师SOA真题 November2000 Solutions
·Solaris Common Messages and Troubleshooting Guide
·精算师SOA真题 November2004 Solutions
·精算师SOA真题 November2001 Solutions
·精算师SOA真题 May2001 Course 6 AM and PM Solutions Combined

特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
[打印本页] [关闭窗口] 转载请注明来源:http://www.vipcn.net
| 帮助(?) | 版权声明 | 友情连接 | 关于我们 | 信息发布
Copyright 2007 www.vipcn.net All Rights Reserved. 鄂ICP备05000083号Powered by:viphot