March 19, 2024, 05:06:59 AM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: How to speed up my internet connetion of 64kbps with 50 syst  (Read 8278 times)

Offline segun1ng

  • Linux Noob !
  • *
  • Posts: 25
How to speed up my internet connetion of 64kbps with 50 syst
« on: November 27, 2003, 09:12:03 AM »
AM USING A VSAT LINK 64KBPS DOWNLINK AND 128KBPS UPLINK WITH A LINUX PROXY SERVER AND 50 WINDOWS WORKSTATIONS, HOW DO I SPEED UP MY BROWSING USING THIS LINK.

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
How to speed up my internet connetion of 64kbps with 50 syst
« Reply #1 on: November 27, 2003, 12:12:42 PM »
Just use squid with cache enabled..

Also if you are using squid.. then you can do some tweaks to improve its performance.

Offline segun1ng

  • Linux Noob !
  • *
  • Posts: 25
How do I twick the squid.
« Reply #2 on: November 28, 2003, 07:00:08 PM »
How do I twick my squid... ? I need to know .. Thanks.

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
How to speed up my internet connetion of 64kbps with 50 syst
« Reply #3 on: November 29, 2003, 07:12:23 AM »
Here i am giving some tweak techniques .. Hope will help you!!!

1. Give your cache a separate partition. Make that partition reiserfs.. As reiserfs is best to deal with the small file (b'coz squid has to use several thousands of small files).
2. Increase RAM of your Server to 512 MB or more.. Now.. now in your squid.conf file  change
(Change the following lines only if you have 512 MB Ram)
Code: [Select]
cache_mem 384  
If you have 256 RAM then u can give 128 instead of 384.
3. Add the following lines in your squid.conf
Code: [Select]
half_closed_clients off
maximum_object_size 8192
You can use greater value in maximum_object_size if you are having a good amount of memory for cache.
4. Also in your squid.conf add the following line..
Code: [Select]
cache_store_log none
The above are few changes which will surely affect your browsing experience..

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
How to speed up my internet connetion of 64kbps with 50 syst
« Reply #4 on: November 29, 2003, 07:15:49 AM »
Also use about 20 gb or more disk parttion to be used as cache..

I am assuming that u have a processor with the speed more than 1 Ghz.

Offline segun1ng

  • Linux Noob !
  • *
  • Posts: 25
How to speed up my internet connetion of 64kbps with 50 syst
« Reply #5 on: December 02, 2003, 07:41:01 AM »
Thanks for this, but when I increse the cach_mem it say too large than cach space I want to know how to Give cache a separate partition on my disk space.

Thanks

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
How to speed up my internet connetion of 64kbps with 50 syst
« Reply #6 on: December 02, 2003, 12:49:45 PM »
Well... just creat a separate partition or use any existing extra partition.. Now in squid.conf change the following lines. as per your requirements...
Code: [Select]
cache_dir ufs <ur current cache location>
To
Code: [Select]
cache_dir ufs <ur new cache location>