Help using torrent client + local network fileserver[SOLVED]

as the title says i need some help in order to make it possible for either azureus or deluge to be able to see my local network's fileserver as unfortunately neither of the both can "see" the network (arch can see if ofc and i can browse the contents)
The fileserver is specifically FreeNAS with CIFS/SAMBA,
The hard disks are in UFS format (need em from time to time when i log into windows xp -rarely)
I was thinking of a way to mount the fileserver but i cant do it
Can someone give me an example of how to be able to mount it ? as as many tries i ve made to tamper with fstab in general didn't return any results (using ntfs-3g in order to mount windows partitions/linux partitions)
Thanks in advance
Last edited by jedimastermaniac (2008-06-28 15:58:47)

so something like this should work ?
//Server IP  or hostname/ share??  i can understand the rest but that's i would like to understand
would for example... this work
//200.150.0.0/fileserverpath to hard disks) /mountpoint blah blah work?
this is the point where i need help basically. the first part

Similar Messages

  • How do I stream iTunes content to my home theatre using any combination of a MacBook Pro, an iPhone 4s, and a PS3 using only a LOCAL network?

    I have found many solutions to this problem assuming home internet access, but I only have access to the internet via my iPhone. I do not want online capability in my PS3. All I want to be able to do is control iTunes on my MacBook, and hear/view the content on my home theatre. I would prefer to use my iPhone as the remote for iTunes, and do not want to add the monthly cost of home internet to this equation. I do not require access to anything on my MacBook except iTunes in this application. I would prefer to use iTunes and stream to my home theatre, as opposed to setting up my MacBook as a media server and using the PS3 interface. Is this possible? Can I accomplish this goal using a local network? Can I create a wifi network on my MacBook to do this, or do I need a router? I am looking to spend as little as possible on this project, as I plan on moving to a more urban area soon, and will be buying Apple TV and subscribing to home internet service when this happens.

    Get an AirPort Express.  It has an audio out which you can connect to the line-in on your home theatre system.  All the other devices will talk to the AirPort Express and stream content to it via wi-fi.

  • Help Can Accses My Local Network

    Hi
    I have a little problem someone in my office deleted the icon for the network the one that appears just above or under the icons of the harddrives when you open a finder window
    ever since I cant accses my local network and i cant figure it out how to get the icon ones agian
    Can Anyone Help me Please

    Look at Finder > Preferences > Sidebar and see if the icon is checked
    You can call up the Server connection list with Apple Key + K

  • Help using JMS in a network/general architecture

    Hi everybody :
    We are working on the development of a distributed application. The architecture of the system is something like this:
    - A dispatcherthat receives requests (in a string shape) via http post. This unit has to encapsulate this request in a object and fordward such a petition to the correct service according a parameter of the request string.
    - A little number of services (4 or 5) that wait for requests delivered by the dispatcher. When a petition arrives, is attended to, and a response is sent to the client, using the http post that the client has used to send us the initial request. The computation complexity could be severe (access to DB, on-demand compilations, multimedia handling...).
    The distribution arises when we wanted to place each service on different machines due a heavy amount of requests.
    On a first approach, we are considering to use a servlet to manage the requests and JMS as middleware messaging service, as we want to provide an efficient communication layer between the modules of our application.
    Here come my doubts:
    - Would be the system more efficient if the service-providers are some kind of Enterprise Java Beans? And servlets?
    - I have readed the JMS and de JNDI tutorial. I have performed many tests in local mode, and i want now to do the same in a network mode... could somebody orient me? How do could i bind a connection factory with a specific resource across the network? In coding time or in deploying time?
    Help will be very very appreciated!!!!!
    Thank you very much for reading this message
    Greetings from Maria, Spain (europe)

    Hello Maria,
    You mention several things regarding architecture. I'll try to iterate them for you. As always this is just one persons idea/opionion.
    Receive Request from HTTP Posts. (Dispatcher)
    -- Sounds like an XML String morphed into an object via servlet. You could standardize on SOAP if it's not too much overhead.
    Services - High computation...
    Let jms receive and queue these requests. A service delegate can spawn threads to deal with the complex computations. I say Queue so you can cap the active thread count and pause the delegators thread creation due to any memory / cpu constraints...
    As far as JMS is concerned I'm unaware of your transactional requirements. In enterprise systems I have written, everything must be transacted and audited. JMS has a nice model for this. You could move to a pub/sub architecture as well.
    Scalability - (Distribution arises) - Each machine can maintain it's own queue and the servlets can distribute to them. Or you can pub/sub them via a dispatcher, it's own machine if desired - and let each machine act as a listener. A nice model as the amount of services grows.
    - Now that I've only reiterated what you've tried..
    Would be the system more efficient if the service-providers are some kind of Enterprise Java Beans? And servlets?
    -In my opionion for the high volume HTTP requests, servlets can lift the load.
    -You system has a high level of requests and load on your CPU. I'll also assume that transactions and auditing are required. As I'm sure you well know EJB is not the fastest animal in the forest. I would not use Message Driven Beans as you will have a hard time tunning performance within an EJB Container.
    - Now after I've said all that any fallout and persistance requrements from each service can leverage EJB's. Just remember that EJB's lend themselves well to web/commerce apps. I have no idea of your applications context so I'm taking a stab. There are wonderful tools in the EJB architecture, however, just because you've chosen Java doesn't mean you have to use EJB's. If speed in an issue for these services ( persisted or session level ) perhaps a mix is what your desire. ( I find session beans to be much better accessors than there sluggish entity brothers. )
    JNDI - Create a Service Locator that abstract the lookups for your services. Depending on how far you want to go. Our Service Locator can look up a multitude of contexts. Be it Weblogic/Websphere or a file system. There is no magic to it you just have to plug and play the contexts.
    "I have readed the JMS and de JNDI tutorial. I have performed many tests in local mode, and i want now to do the same in a network mode... could somebody orient me? How do could i bind a connection factory with a specific resource across the network? In coding time or in deploying time?"
    --I would take the performance hit on late binding and use caching to try and gain some back.  Below is a small example...
    -- All in all, It would help you to become more familiar with the EJB spec if your planning on that path. You soon come to notice it's features ( and particular quirks ).
    Good Luck,
    Hope this helps
    private String serverInstance;
    private String serverPort;
    /** Creates new ServiceLocator */
    protected ServiceLocator(String host, String port) {
    this.serverInstance = host;
    this.serverPort = port;
    public String getServerPort() {
    return this.serverPort;
    public String getServerInstance() {
    return this.serverInstance;
    private javax.naming.Context getInitialContext() throws javax.naming.NamingException {
    javax.naming.Context ctx = null;
    java.util.Properties prop = new java.util.Properties();
    prop.put("java.naming.factory.initial", "com.sun.jndi.rmi.registry.RegistryContextFactory");
    prop.put("java.naming.provider.url", "rmi://"+serverInstance+":"+serverPort+"");
    prop.put("java.naming.factory.url.pkgs", "org.objectweb.jonas.naming");
    ctx = new javax.naming.InitialContext(prop);
    return ctx;
    public Object getContainerService(String jndiName) throws javax.naming.NamingException {
    javax.naming.Context ctx = getInitialContext();
    java.lang.Object obj = ctx.lookup(jndiName);
    return obj;
    public static ServiceLocator getInstance(String host, String port) {       
    return new ServiceLocator(host, port);

  • Help using JMS in a network

    Hi everybody :
    We are working on the development of a distributed application. The architecture of the system is something like this:
    - A dispatcher that receives requests (in a string shape) via http post. This unit has to encapsulate this request in a object and fordward such a petition to the correct service according a parameter of the request string.
    - A little number of services (4 or 5) that wait for requests delivered by the dispatcher. When a petition arrives, is attended to, and a response is sent to the client, using the http post that the client has used to send us the initial request. The computation complexity could be severe (access to DB, on-demand compilations, multimedia handling...).
    The distribution arises when we wanted to place each service on different machines due a heavy amount of requests.
    On a first approach, we are considering to use a servlet to manage the requests and JMS as middleware messaging service, as we want to provide an efficient communication layer between the modules of our application.
    Here come my doubts:
    - Would be the system more efficient if the service-providers are some kind of Enterprise Java Beans? And servlets?
    - I have readed the JMS and de JNDI tutorial. I have performed many tests in local mode, and i want now to do the same in a network mode... could somebody orient me? How do could i bind a connection factory with a specific resource across the network? In coding time or in deploying time?
    Help will be very very appreciated!!!!!
    Thank you very much for reading this message
    Greetings from Maria, Spain (europe)

    Maria D'Espana,
    Not sure if this will help, but I was having a hard time getting the remote samples (SimpleQueueReceiver and SimpleQueueSender) until I figure out a couple of thing.
    1st: The orb settings on each computer have to be updated. Edit the ord.properties file under %J2EE_HOME%\config and change the last param to your computer name (in Windows %COMPUTERNAME%).
    2nd: The destination (either Queue or Topic) has to exist in both systems. One of the system has to have the factory, created through the admin prompt and the other one has to have a reference to it, just like the tutorial says (j2eeadmin -addJmsFactory QueueName queue -props url=corbaname:iiop:server2:1050#server2.
    Hope this helps!
    P

  • Can't connect to MPD over local network - control [solved]

    I have a laptop running Arch Linux. I recently purchased an O2 Joggler, and installed Ubuntu Netbook Remix on a USB drive for it (AWESOME, btw). My idea was to use the joggler as a remote control for my laptop, which is often running MPD to listen to my music collect (I'm also using it for light browser etc.)
    However, my setup just now isn't allowing me this. Here are some configs that will hopefully help the diagnosis
    mpd.conf:
    music_directory "/home/iain/Music" # Your music dir.
    playlist_directory "/home/iain/.mpd/playlists"
    db_file "/home/iain/.mpd/db"
    log_file "/home/iain/.mpd/mpd.log"
    error_file "/home/iain/.mpd/mpd.error"
    pid_file "/home/iain/.mpd/mpd.pid"
    state_file "/home/iain/.mpd/mpdstate"
    user "iain"
    port "6666"
    bind_to_address "any"
    #password "mpd@read,add,control"
    default_permissions "read,add,control"
    log_level "verbose"
    audio_output {
    type "alsa"
    name "Sound Card"
    options "dev=dmixer"
    device "plug:dmixer"
    format "48000:16:2"
    mixer_type "alsa"
    # mixer_device "default"
    # mixer_control "Alpha"
    #auto_resample "no"
    /etc/hosts.allow:
    # /etc/hosts.allow
    #ALL:ALL:ALL
    MPD: ALL
    # End of file
    /etc/hosts.deny:
    # /etc/hosts.deny
    ALL: ALL: DENY
    # End of file
    I'm trying to connect FROM my joggler to my laptop which is running MPD. The laptop's local IP is 192.168.1.70.
    I know how awesomely useful the Arch user on these forums are (I've need the help A LOT in the past), so I'm hoping one of you clever lot can help me holmes' this problem.
    Thanks,
    pritchard92
    Last edited by pritchard92 (2010-05-25 14:35:16)

    A hint to open a port
    iptables -A INPUT -p tcp -m tcp -s 0/0 --dport <portno> -j ACCEPT.   with the port number for eg 8600 is used to open up the mpd streaming for me.(in arno firewall script you can set these in custom.rules. The rules may differ in your case. A search will give tons of options.

  • Help Using Instant Client ODBC on Linux

    I am familiar with using ODBC and visual basic under Windows. I would like to use the Oracle instant client ODBC under Red Hat ES3 within a C or C++ program to access an Oracle database.
    Where can I find documentation related to this:
    a) setting up an ODBC connection on Linux
    b) installing the Oracle instant client on Linux
    c) building an application with Oracle instant client ODBC
    Am I correct in assuming that any C/C++ ODBC code examples from windows could also be used on Linux.
    Thanks,
    Werner

    We are also interested in the very same thing. We are using third party compiler called SIMSCRIPT from CACI which has a module called SDBC for database connectivity. SDBC requires ODBC to be installed/configured. Our application is for Linux, therefore we are interested in using the ODBC driver on Linux clients to connect Oracle database servers on Linux and Sparc. I see the odbc related zip (for 10g) and rpm (for 11g) instant client files on the OTN Instant Client download page. How to install/configure odbc instant client? Is there a document/whitepaper/Metalink Note ?
    Thank you

  • Using 10g client across network

    I have my 10g database installed on a SuSE 10.0 box and everything seems to work as expected there. I configured the database to permit remote access to the web administration interface, then opened the firewall to permit http on port 8080. I can now access the web administration interface from a Windows XP Pro box.
    I have installed only the client software on the XP box and I would like to connect to the database on the SuSE box with SQL*Plus. I am so far frustrated, and puzzled. The 10g client-only install didn't put the tnsnames.ora file on the XP box, or any of the other usual configuration files I came to know and love from versions 7 and 8i. Also, none of the usual environment variables were created during the install on either the SuSE or the WinXP boxes.
    Can anyone point me to resources explaining this? None of the Oracle-supplied docs seem to mention any of this.
    Thanks.

    user507290 wrote:
    I would like to connect oracle 7.3.4 or oracle 8i by using oracle 10g client.
    Is it possible?Why would you even consider doing this? It's like saying "+I have a Lightning F-40 bicycle and GSX R1300 Hayabusa Turbo superbike. I would like to fit my bicycle wheels on the superbike+".
    Surely that does not make any sense at all?

  • My server has Two NICs ! I want to use one of the NIC for the internet and the other to a local Network .

    In my case ,  there is a server ( windows 2008  enterprise) . Instead of sharing the internet using the server .  i have done the following .
         i have 24 port switch which is connected with the modem (ISP Gave it to me).  My server then is connected with the switch .  the client pcs are also connected with the switch(d-link switch).
    my objective is to enable efficient way of file sharing from server for client pcs and also internet sharing at the same time for client pcs!
    my server has two NICs ! how to make the local network and internet work with out a fight!
    how could i achieve this ?  help me guys
    regards

     It really depends on exactly what the equipment from the ISP is. If it is a simple modem there is no point in connecting it to a switch. It needs to connect to a router.
      You can connect it to one NIC of the server and configure the server as a (NAT) router (with the other NIC connected to the switch).
      If either of the switches is actually a router you can use it as the NAT router and run the server on the LAN using one NIC. 
    Bill

  • Printing issues to local network when AnyConnect VPN in use

    I have situation where I have a user connecting to the corporate office from her home network using a Win7 laptop and AnyConnect VPN 3.1.01065. She has an IP HP printer on her local network. When she is connected via VPN, she cannot print to her printer, Win saying the printer is off-line. That said, we are allowing access to the remote local network with a "split-exlude" conifiguration on the ASA:
    access-list LocalLANAccess standard permit host 0.0.0.0
    group-policy DfltGrpPolicy attributes
    vpn-tunnel-protocol ssl-client
    split-tunnel-policy excludespecified
    split-tunnel-network-list value LocalLANAccess
    "Allow local (LAN) access when using VPN" in the AC preference tab is checked. And also, she can ping the local printer when connected via VPN. however, the printer appears off-line, from the laptop perspective, when the VPN is on, and will go back "on-line" when the VPN is disconnected.
    Anyone have any thoughts on how to correct this?

    Well, if you want a workaround to apply for all VPN Client then you need to go for split-tunnel-policy tunnelspecified instead of split-tunnel-policy excludespecified. Suppose if your corporate network is 10.0.1.0/24 and you want to give the access to this subnet for vpn users.then configuration will be as follows.
    access-list CorporateLAN standard permit 10.0.1.0 255.255.255.0
    group-policy DfltGrpPolicy attributes
    vpn-tunnel-protocol ssl-client
    no split-tunnel-policy excludespecified
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value CorporateLAN
    This will solve the problem globally
    With Regards,
    Safwan

  • Total crash when using a torrent client.

    Hi,
    I am experiencing a great problem last 2 weeks. I was using Transmission torrent client for 2 months, but suddenly it started to crash during the first 15 minutes after i start it. The crash is huge, because every time the computer requires a restart (you know the black window explaining how to restart in several languages).
    First i thought the problem came from the updated version of Transmission, but then i tried with BitTorrent, Azureus, Tomato, xTorrent and many more and the problem was the same... perfectly working for 15 minutes and after this the huge crash.
    This crash also causes for the fans of my MAC to work very loudly and fast.
    Please help with this, because i don't want to re-install my MACOSX
    P.S. My OSX - 10.4.10 ; My MAC - Dual 2GHz PowerPC G5, 512 RAM
    Thanks in advance,
    Georgi Toshkov
    Message was edited by: siromaha

    I am coming to this thread a little late but really "a brody" the guy just wants some help and not a lecture on illegal software use. I also think your rush to condemn bit torrents as only for illegal downloads is completely over blown. Firstly, it was the open source software movement that developed and utilized bit torrents. There are many open source distributions that you can only get through torrents. For example, the new qt4 and amorak project for the mac. This is hardly illegal and I don't think the forum policy would limit discussion of it or any other subject on torrents. You personal views may differ but those would fit better in a different discussion forum.
    Siromaha, your problems seem to be severe and may indicate a hardware failure possibly a network card or memory. Are you sure this only happens when the torrent is running? If so try using a different client for a few days. I have found transmission to be a little buggy sometimes. Have you added any other software lately that could be the problem. I see you have a G5 is it staying cool enough?
    Message was edited by: tll123

  • Help !!  I am trying to uninstall and then reinstall itunes but when I try to remove itunes it I get error message ~ the feature you are trying to use is on a network resource that is unavailable?????  Any help would be great:) !!

    Help !!  I'm trying to un install and then re-install itunes.  I get erroe message ~ the feature you are trying to use is on a network resource that is unavailable????  Any help would be great!   TXs!

    See if this previous discussion will help.  It is markd as solved:
    I am trying to uninstall itunes as it will not open error 7 (windows 126) so that I can reinstall but keep getting the message.. The feature you are trying to remove is on a network resource that is unavailable itunes.msi... Any suggestions anyone
    It was the one with the green checkmark on the right side of this page.

  • Can you use screen sharing outside of your local network?

    I've been poking around with the "screen sharing" in osx Lion. I have a few questions about it.
    Firstly, is the built-in screen sharing only accessible through the finder?
    Also, is it only available on local networks? I've gotten it to work on two computers on the same network. But, can I use in the built-in screen sharing to look at my work iMac while I'm at home on my Macbook? Or would I need a full VPN client to do this? (Although isn't there built-in VPN compatibility in Lion?)
    Thanks!

    Go here..
    https://discussions.apple.com/message/16439571#16439571
    ... and read my post explaining the different ways to share your screen.  Things should be a little clearer for you, I hope.
    Bob

  • How to view channels used by other local wireless networks?

    I use a wireless airport network in my office, with my Airport Express (802.11g) base station about 10 feet from my iMac. I get a lot of interference (from other networks or cordless phones) and despite interference robustness being on, my airport signal gets dropped fairly often -- and with it, I lose my Internet access and wireless printer.
    There are about 15 other local wireless networks (owned by other businesses). I thought I might improve my interference robustness by switching my wireless channel to a channel used by the least number of other networks.
    Now, I seem to remember running into an (Apple) app somewhere that showed these local wireless networks with their channels. But now I can't find it again, so I can't tell which channel is least used. I hope someone can help me find that app or functionality again!
    Thanks.

    Thanks for the suggestion; I checked it out and found some questionable reviews on VersionTracker for iStumbler so I'm hesitant to jump right in (does it still fill up the Console log?)
    In any case, I seem to remember finding channel information using some other application or preferences pane or something already on my system, but now I can't remember where. Is there any app that comes with OS X that shows channels on local wireless networks? I can't find this feature in Airport Utility.
    Thanks for any assistance.

  • Help me to Access a File in the Local Network

    Hi everybody,
    I'm new to this field.
    I want to access a file in a machine on the local network from other machines.
    can anybody please give me a simple code for this.
    (actually I'm very little aware of this field)
    Thank You.

    Duminda_Dharmakeerthi wrote:
    Hi everybody,
    I'm new to this field.
    I want to access a file in a machine on the local network from other machines.
    can anybody please give me a simple code for this.This is not a code writing service.
    If you want to access a file on another machine, there are many different ways to do it. All of them require that the other machine be running some kind of service, and that your client machine knows what that service is and how to use it, and most also require your client to authenticate itself.
    You could mount a remote drive with Samba or NFS or Windows' file sharing.
    You could use FTP.
    You could use SCP.
    You could use HTTP.
    You could develop your own custom file sharing protocol.
    You could use some other option not mentioned here.

Maybe you are looking for

  • PO line items are not been processing in VL10B

    Hi, I have a PO with 20 items  and I tried to create outbound deliveries via VL10B transaction. As a result, the system creates N outbound deliveries just for some lines but for others not.  I do not know the reason why this happened. I checked every

  • Transportation Cost( vi01)

    Hi Friends 1.How the Transportation cost posting to the accountings? 2.we created single shipment document for maltipul deliveries(3) the shipment cost document is 6000/-. can we divided this 6000/- to each sales order or delivery? EX: 6000/3: 2000/-

  • Incomplete DataMarts in non-cumulative InfoCubes during extraction proccess

    We want to transfer the stock's information from one infocube to other, we followed the OSS 375098 but we are still having some problems, we have 2 registries by plant,date,material as the result of the reference point in the source cube, now we're t

  • Reboot then stop at loading ' Blackberry" bar after 3 quarter loading. :(

    My blackberry Torch 9860, always lag . Then i installed an apps named QUICKPULL. the app run just fine with my bb, until yesterday evening, when i tried to reset my bb using quickpull, it rebooted but stop at the loading "blackberry" bar half way.  i

  • 12.1 12.2 making my programs slow

    Hi, I've been using sunstudio 12.1 to compile a prgram witch C/C++ and Fortran 95 parts. Recently, after I've upgraded to Oracle Solaris Studio 12.2, the same program compiled with same compiler options are at least 5 times slow! Even the 'Release' b