- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Bufer cache on linux
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2003 04:10 AM
10-29-2003 04:10 AM
Bufer cache on linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2003 04:33 AM
10-29-2003 04:33 AM
Re: Bufer cache on linux
If you mean buffer itself, you get this on recompiling your kernel.
If you mean cache less, well you have to dig more and check which progeam you run that needs caching...
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2003 04:37 AM
10-29-2003 04:37 AM
Re: Bufer cache on linux
cd /usr/src/linux (or wherever the red hat source is)
export DISPLAY=:0
make xconfig
enable all the things you want enabled
save and exit
make dep
make bzImage
make modules
make modules_install
cp /boot/vmlinuz /boot/vmlinuz.prev (you may need to adjust this name for red hat)
cp /boot/system.map /boot/system.map.prev
cp System.map /boot
cp arch/i386/boot/bzImage /boot/vmlinuz
edit /etc/lilo.conf or grub.conf
add an entry for booting vmlinuz.prev and your new kernel
run lilo (if using it)
re-boot.
Note: I'd schedule a Red Hat 7.3 upgrade. Its more stable than 7.2
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2003 04:41 AM
10-29-2003 04:41 AM
Re: Bufer cache on linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2003 05:09 AM
10-29-2003 05:09 AM
Re: Bufer cache on linux
http://www.ussg.iu.edu/hypermail/linux/kernel/9903.1/0289.html
Also useful but a circuitous way to get where you want:
http://www.linuxhq.com/lnxlists/linux-kernel/lk_9906_01/msg00257.html
Hmmm.
http://www.linux-tutorial.info/cgi-bin/display.pl?286&0&0&0&3
The last one looks good.:
http://www.linux-tutorial.info/cgi-bin/display.pl?287&0&0&0&3
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2003 07:32 AM
10-29-2003 07:32 AM
Re: Bufer cache on linux
Andy