Take the 2-minute tour ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

Currently my Internet is really slow. But I want to allocate all resources to a browser that is loading a movie. How do I do that?

share|improve this question

closed as unclear what you're asking by Gnouc, Anthon, jasonwryan, Ulrich Dangel, bdowning Jul 12 at 11:32

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

    
upvote this please!! :) –  user2128444 Jul 12 at 5:46
1  
If you want upvotes, ask a better question. Begging won't help. –  jasonwryan Jul 12 at 6:54

1 Answer 1

If you really want to set all the resources to a particular IP address, you can achieve it using tc command. But is it worth spending the time on it, it's upto you. :)

From man page of tc command,

Description

Tc is used to configure Traffic Control in the Linux kernel. Traffic Control consists of the following:

SHAPING When traffic is shaped, its rate of transmission is under control. Shaping may be more than lowering the available bandwidth - it is also used to smooth out bursts in traffic for better network behaviour. Shaping occurs on egress.

SCHEDULING By scheduling the transmission of packets it is possible to improve interactivity for traffic that needs it while still guaranteeing bandwidth to bulk transfers. Reordering is also called prioritizing, and happens only on egress.

POLICING Where shaping deals with transmission of traffic, policing pertains to traffic arriving. Policing thus occurs on ingress.

DROPPING Traffic exceeding a set bandwidth may also be dropped forthwith, both on ingress and on egress. Processing of traffic is controlled by three kinds of objects: qdiscs, classes and filters.

Some interesting links which give a way to use this command,

http://serverfault.com/questions/191560/how-can-i-do-traffic-shaping-in-linux-by-ip

How to limit network bandwidth?

http://www.cyberciti.biz/faq/linux-traffic-shaping-using-tc-to-control-http-traffic/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.