How to download things with BitTorrant

i got emails asking me how to use BitTorrant to download the ISO's ... hmm ... i have no idea, as i do not even know how BitTorrant works (well, the principle i know from the webpage)
can anyone explain how to download something with BitTorrant?

Or you can also use a great Bittorrent GUI Client, called Azureus, its written in Java and its features are quite awasome compared to the default client.
Here is the link:
http://azureus.sourceforge.net/
I think there is a PKGBUILD  somewhere in the TURs, anyway, as its a java prog. you can run it directly from its directory, so the only thing you would need, is to move it to /opt/azureus and make a simbolic link to its binary in /usr/bin
Anyway, i use it with my dial-up and get around 6k... and you can get real good stuff from BT.
regards!

Similar Messages

  • How to share things with aplication express?

    The most important thing for using a database is sharing things, but why I grant even all of one of my table to one user, but she even cannot use it, just say: error; userxxx don't have the right to access the content?
    Very strange, and the Synonm is also no good, I create one for another user's table, like create synonm XXX for username.tablename.
    but when I want to : Select x,x.x, from xxx, it doesn't work!!!
    how to share things with Database?

    Better to give you some photos that can let you see
    the problem , but that can not happen here.Actually, you can use pictures. Do a screen capture where you're having the problem, upload it to http://tinypic.com and then put the link to the picture here in your posting.
    Please be noticed all , me and the users don't know
    much about SQL, I know some. So everything has to be
    done in the GUI interface.Well, the GUI isn't always enough. If you want to do grants you really need to use the SQL command window - and learn the proper syntax for the grant operation.
    I(A) grant select , update, insert on A.xx to user
    B,
    but they see onthing in ther Application Express, how
    can they do insert and all works just like I do ? What is the parsing schema for your application? Is it set to the schema where your data lives?
    Earl

  • How to download  file with Save As dialog

    I am trying to download files with a Save As dialog, according to Jason Hunter's instructions in Jave Enterprise Best Practices.
    String filename = "content.txt";
    // set the headers
    res.setContentType( "application/x-download" );
    res.setHeader( "Content-Disposition", "attachment; filename=" + filename);
    // send the file
    OutputStream out = res.getOutputStream();
    returnFile( filename, out);
    The file content.txt is in the root directory of my webapp. But I get this stack:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.io.FileNotFoundException: content.txt (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:64)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.returnFile(FileDownloadServlet.java:43)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.doGet(FileDownloadServlet.java:24)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:484)

    The root of the webservers changes from server to server and
    sometimes it depends on the path you run webserver exe.
    The best i have found to overcome this kind of problems is by
    using getResourceAstream() method which basically looks at classpath locations only, but still this has some problems like it should kept at the
    specified classpath becoz the getResourceAsStrem() method is not static
    method and it always associated with the class object and the file
    accessing also should be in the same package/classpath.
    by using getResourceastream you cannot look at other places (except classpaths)
    and this should be used only if you looking for .properites definitions.
    the Second best method is
    see you have a file called "context.txt" right
    before you create a file, first create a directory at the root, let say
    "\tmp"
    and then create a file \tmp\context.txt
    and then open an output stream to it either using fileoutputstreamm...
    and then write all output content to servlet/client output stream.
    this will be the best becoz you are specifying the "\" the root
    and this is common for all operating systems and definitely it will create at the root directory either serverroot or harddiskdrives root
    so you will never missout and the exceptin will also not comes along the way
    cheers..
    if you get new thing , let me know
    bye
    with regards
    Lokesh T.C

  • How to download keynote with new Account after deleting previous one?

    Hi,
    I have changed my Apple ID and deleted my keynote which i have dwonloaded with my previous Apple account. But when I tried to download keynote using my recent Account to the same Mac it only shows "update" option with previous account. Is there any way i could download it with my recent Account?
    thanks

    Thanks, I know its a silly issue to forward here.
    I tried several times but what happened was I had a pending update I tried with my previous account. So when i updated and remove it. I was able to download from my recent account.

  • How to download things to Adobe Download Assistant?

    I read in an adobe community article (link:http://forums.adobe.com/thread/1266865) that to download adobe download assistant you need to click on the trial on the download page of the thing you want to download and then it will open up in the assistant.Except I already tried that and it only opened up in creative cloud.How do I open it up in the assistant.The reason being I want to be able to pause my downloads and you cant do that in creative cloud.

    With perpetual product download like CS6 or previous version, the Adobe download assistant is used, with Creative Cloud the CC desktop App is used as interface to download the complete range of products of CC.
    In Adobe sites CC desktop download is available for trial too. After the trial if you decide to purchase it then the download has the option to serialize / subscription it .
    Regards
    Rajshree

  • How to download program with screens & menus

    Hi,
    I have created a report which has many includes, screens & menus created using screen & menu painter.
    How I can download this program with all the objects. Or I have to download each include & screen using download facility. Even after that there is no functionality to downlaod Menus.
    pls help

    Hi,
    Take a look at http://www.sapgenie.com/abap/code/abap13.htm . See if it helps.
    You might also find http://www.abovesoft.com/start.html helpful.
    Regards
    Message was edited by: Shehryar Khan

  • How to download apps with internet download managers

    i need to download my payed apps with an idm because with internet download manager my speed doubles up but with itunes i have problems of low speed and long time to download apps ?

    I agree that this is silly, I'm with 3UK and get completely unlimited data on my Tariff.
    It's a pain having to find a WiFi point just to download an app. Especially when sometimes, my 3G is faster than some public WiFi points
    Another silly thing is the fact that when I'm out with a Mate, I can tether to his iPhone and download apps via WiFi over his 3G connection
    WiFi/3G dongles also work. But that's beside the point
    Maybe if they gave you a warning before downloading.
    ie. "This application exceeds 50MB. do you wish to download using your dataplan or later via WiFi"

  • How to download iTunes with error code 24

    I have tried the fixes from Windows and I have uninstalled everything to do with iTunes as I saw on another thread as well. So now I have no iTunes on my computer running Windows 7 and I still get the error code 2324 when trying to get the latest version of iTunes. Any other thoughts on how to fix so I can have iTunes? I am extremely frustrated.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR suitable for your PC (there's a 32-bit Windows version and a 64-bit Windows version):
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, see if iTunes will launch without the error now.
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • How to download photos with broken display

    I accidentally dropped my Lumia 820 and want to download my photos now. But the display is so broken that I cannot enter the PIN code and hence cannot connect the phone via USB to my laptop. Is there any way around entering the PIN? All my photos are still on the phone memory and I would hate to lose them!

    BiancaHERE wrote:
    Is there any way around entering the PIN? 
    Unfortunately not as wouldn't then be a security feature. For future reference consider use of SkyDrive to backup images to the "Cloud" as they are taken: http://www.windowsphone.com/en-gb/store/app/skydrive/ad543082-80ec-45bb-aa02-ffe7f4182ba8
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • How to download apps with nokia x7 without ovi sto...

    So my nokia x7 phone works well but my dad doesn't let me use 3g network and my app store doesn't work so i was wondering if theres a way to get apps or how to fix this problem.
    Community Management notice:
    Hidden link to external content removed.

    Well, If you want then you can download the apps from any other website or source than Ovi store, Scan it for viruses and then put it into your phone through normal installation process or you can copy it to your memory card and then insert it into your phone, since its a smart phone, it can install applications.
    All the best
    - Kush Mishra
    TechSpot Original Holder
    If this worked please click on the star, I need that. Thanks...

  • How to download garageband with OS X 10.7.5

    how do I download garageband on my MacBook pro running OS X 10.7.5 ?

    You install it from the computer's original disks(if any), or upgrade to Yosemite from the Mac App Store, or buy an iLife DVD from a source such as Amazon or eBay.
    (116354)

  • I cannot download things with iTunes

    Hello everyone,
    I finally got my iPod today after it being delayed by heavy snowfall, and was very excited to use it. so I started up iTunes, followed all instructions, and managed to get my music on my iPod.
    Then I decided to download an app, and this is where the problems start. As soon as I click download, I get an error message in Dutch, roughly translated it says something like this:
    'Your request to iTunes could not be completed due to an unknown error (2001)'.
    I am totally clueless what to do

    hi phileus,
    I apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you mean that you are having issues with iTunes not recognizing your new iPhone on your Windows machine, you may find the troubleshooting steps outlined in the following article helpful:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Regards,
    - Brenden

  • Windows xp with itunes cashes how to download itv with purchasea

    My Windows XP box crashed, and I have purchases on my itv box.. How do I download them to my new windows xp itunes box

    You would think other people would problem like this, so they wont have to repurchase the stuff they brought again!!

  • HT201364 how to download mavericks, with lion installed?

    Can I download Maverick for free?.

    thank you for your response. I had Mavericks installed on my computer and after updating to Yosemite my computer ran slow. Very slow. Dead slow. So I restarted it with its original OS software which is Lion. I was hoping to get back to Mavericks where I had no issues with.

  • How to download contents with specific URL

    assumption: URL "http://www.game.com/login.php?name=joeCruiz&pwd=123456")" will show the logined info about me.
    I try to get the logined info in pure java program with following codes:
    url = new URL("http://www.game.com/login.php?name=joeCruiz&pwd=123456");
    connection = (HttpURLConnection)url.openConnection();
    input = connection.getInputStream();
    dataInput = new BufferedReader(new InputStreamReader(input));
    while ((line = dataInput.readLine()) != null) {
    buffer.append(line);
    But I just get info shown with "http://www.game.com/login.php?".
    Thanks for any comment.
    Joe

    Hi there,
    forgive me my bad english...
    i guess you have to use something like this
    HttpURLConnection conn;
    conn = new HttpURLConnection(new URL("http://www.game.com/login.php?name=joeCruiz&pwd=123456"));
    conn.setRequestProperty("name","joeCruiz");
    conn.setRequestProperty("pwd","123456");
    conn.connect();
    input = conn.getInputStream();
    dataInput = new BufferedReader(new InputStreamReader(input));
    while ((line = dataInput.readLine()) != null) {
       buffer.append(line);
    }All trick is to use setRequestProperty(String, String) instead of pairs in url string.
    Hope this helps.
    With best regards,
    Selivanov Mike.

Maybe you are looking for