[file sharing] mldonkey 2.5.22 with daemon script

I created new version of mldonkey daemon
Old can be found:
http://bbs.archlinux.org/viewtopic.php?t=7662
changes:
1. couple fixes in daemon script
2. daemon script name was changed to mlnet
3. only daemon file in package (gui file not included - please use browser or telnet to manage)
4. you can change user,usergroup,storepath in mlnet file. User and usergroup change allows you to use mlnet preview feature.
download PKGBUILD
download mlnet file needed by PKGBUILD
If you trust me:
mldonkey-2.5.22-2.pkg.tar.gz - filesize 1201345
To compile you need to have internet connection makepkg need caml to download.
Please let me know about bugs and problems

mlnet file
you can change MLDONKEY_ROOT, MLDONKEY_GROUP, MLDONKEY_USER to your purposes
#!/bin/bash
MLDONKEY_ROOT="/home/mldonkeyd"
MLDONKEY_GROUP="mldonkeyd"
MLDONKEY_USER="mldonkeyd"
# general config
. /etc/rc.conf
. /etc/rc.d/functions
PID=`pidof -o %PPID /usr/bin/mlnet`
if [ ! `egrep ^$MLDONKEY_GROUP: /etc/group` ]; then
stat_busy "Adding $MLDONKEY_GROUP group"
groupadd $MLDONKEY_GROUP
stat_done
fi
if [ ! `egrep ^$MLDONKEY_USER: /etc/passwd` ]; then
stat_busy "Adding $MLDONKEY_USER user"
useradd -g $MLDONKEY_GROUP -d $MLDONKEY_ROOT -s /bin/sh $MLDONKEY_USER
[ -d $MLDONKEY_ROOT ] && chown -R $MLDONKEY_USER.$MLDONKEY_GROUP $MLDONKEY_ROOT
stat_done
fi
if [ ! -d $MLDONKEY_ROOT ]; then
stat_busy "Creating mldonkey path"
mkdir $MLDONKEY_ROOT
chown -R $MLDONKEY_USER.$MLDONKEY_GROUP $MLDONKEY_ROOT
fi
case "$1" in
start)
stat_busy "Starting MLDonkey"
if [ -z "$PID" ]; then
cd $MLDONKEY_ROOT
# Remove tmp files
rm -rf *.tmp
# Run MLDonkey
su $MLDONKEY_USER -c "nice -n 19 /usr/bin/mlnet -daemon &> /dev/null"
sleep 5
if [ $? -gt 0 ]; then
stat_fail
exit 1
else
sleep 1 # wait on children
echo `pidof -o %PPID /usr/bin/mlnet` > /var/run/mlnet.pid
add_daemon mlnet
stat_done
fi
else
stat_fail
exit 1
fi
stop)
stat_busy "Stopping MLDonkey"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
exit 1
else
rm /var/run/mlnet.pid &> /dev/null
rm_daemon mlnet
stat_done
fi
restart)
$0 stop
sleep 3
$0 start
echo "usage: $0 {start|stop|restart}"
esac
exit 0

Similar Messages

  • Mldonkey 2.5.22 with daemon script

    I created PKGBUILD file
    # Contributor: Tomasz Bakiera <[email protected]>
    pkgname=mldonkey
    pkgver=2.5.22
    pkgrel=1
    pkgdesc="Multiple p2p client"
    url="http://mldonkey.org"
    license=""
    depends=(sysvinit glibc)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://savannah.nongnu.org/download/mldonkey/$pkgname-$pkgver.tar.gz mldonkeyd)
    md5sums=('958ffb63dbcfcb0f6e48788774dfbb42' '0e468234aaad730b39326130fb11c5ac')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr --enable-batch
    make || return 1
    make prefix=$startdir/pkg/usr install
    install -D -m700 ../../mldonkeyd $startdir/pkg/etc/rc.d/mldonkeyd
    with the file mldonkeyd (based on mysqld script)
    #!/bin/bash
    MLDONKEY_ROOT="/home/mldonkeyd"
    # general config
    . /etc/rc.conf
    . /etc/rc.d/functions
    PID=`pidof -o %PPID /usr/bin/mlnet`
    if [ ! `egrep '^mldonkeyd:' /etc/group` ]; then
    stat_busy "Adding mldonkeyd group"
    groupadd mldonkeyd
    stat_done
    fi
    if [ ! `egrep '^mldonkeyd:' /etc/passwd` ]; then
    stat_busy "Adding mldonkeyd user"
    useradd -g mldonkeyd -d $MLDONKEY_ROOT -s /bin/sh mldonkeyd
    [ -d $MLDONKEY_ROOT ] && chown -R mldonkeyd.mldonkeyd $MLDONKEY_ROOT
    stat_done
    fi
    if [ ! -d $MLDONKEY_ROOT ]; then
    stat_busy "Creating mldonkeyd path"
    mkdir $MLDONKEY_ROOT
    chown -R mldonkeyd.mldonkeyd $MLDONKEY_ROOT
    fi
    case "$1" in
    start)
    stat_busy "Starting MLDonkey"
    if [ -z "$PID" ]; then
    cd $MLDONKEY_ROOT
    # Remove tmp files
    rm -rf *.tmp
    # Run MLDonkey
    su mldonkeyd -c "nice -n 19 /usr/bin/mlnet -daemon &> /dev/null"
    if [ $? -gt 0 ]; then
    stat_fail
    exit 1
    else
    sleep 1 # wait on children
    echo `pidof -o %PPID /usr/bin/mlnet` > /var/run/mldonkeyd.pid
    add_daemon mldonkeyd
    stat_done
    fi
    else
    stat_fail
    exit 1
    fi
    ;;#!/bin/bash
    MLDONKEY_ROOT="/home/mldonkeyd"
    # general config
    . /etc/rc.conf
    . /etc/rc.d/functions
    PID=`pidof -o %PPID /usr/bin/mlnet`
    if [ ! `egrep '^mldonkeyd:' /etc/group` ]; then
    stat_busy "Adding mldonkeyd group"
    groupadd mldonkeyd
    stat_done
    fi
    if [ ! `egrep '^mldonkeyd:' /etc/passwd` ]; then
    stat_busy "Adding mldonkeyd user"
    useradd -g mldonkeyd -d $MLDONKEY_ROOT -s /bin/sh mldonkeyd
    [ -d $MLDONKEY_ROOT ] && chown -R mldonkeyd.mldonkeyd $MLDONKEY_ROOT
    stat_done
    fi
    if [ ! -d $MLDONKEY_ROOT ]; then
    stat_busy "Creating mldonkeyd path"
    mkdir $MLDONKEY_ROOT
    chown -R mldonkeyd.mldonkeyd $MLDONKEY_ROOT
    fi
    case "$1" in
    start)
    stat_busy "Starting MLDonkey"
    if [ -z "$PID" ]; then
    cd $MLDONKEY_ROOT
    # Remove tmp files
    rm -rf *.tmp
    # Run MLDonkey
    su mldonkeyd -c "nice -n 19 /usr/bin/mlnet -daemon &> /dev/null"
    if [ $? -gt 0 ]; then
    stat_fail
    exit 1
    else
    sleep 1 # wait on children
    echo `pidof -o %PPID /usr/bin/mlnet` > /var/run/mldonkeyd.pid
    add_daemon mldonkeyd
    stat_done
    fi
    else
    stat_fail
    exit 1
    fi
    stop)
    stat_busy "Stopping MLDonkey"
    [ ! -z "$PID" ] && kill $PID &> /dev/null
    if [ $? -gt 0 ]; then
    stat_fail
    exit 1
    else
    rm /var/run/mldonkeyd.pid &> /dev/null
    rm_daemon mldonkeys
    stat_done
    fi
    restart)
    $0 stop
    sleep 3
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0starting
    stop)
    stat_busy "Stopping MLDonkey"
    [ ! -z "$PID" ] && kill $PID &> /dev/null
    if [ $? -gt 0 ]; then
    stat_fail
    exit 1
    else
    rm /var/run/mldonkeyd.pid &> /dev/null
    rm_daemon mldonkeys
    stat_done
    fi
    restart)
    $0 stop
    sleep 3
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0
    What you need is to have a network conection when compiling (caml download needed to compile).
    If you add 'mldonkeyd' in /etc/rc.d file (daemons section) it will start with system.
    mldonkey startup script creating mldonkeyd user/group with home directory stored
    in $MLDONKEY_ROOT (change it if you want) .
    Please let me know about errors in this files

    pkgname=kmldonkey
    pkgver=0.10pre4
    pkgrel=1
    pkgdesc="KMLDonkey is a frontend for MLDonkey, a powerful P2P file sharing
    tool, designed for the KDE desktop"
    url="http://www.kmldonkey.org/"
    depends=('kdelibs' 'qt')
    source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.
    md5sums=(096a45c5202c7d7aa82b8a868300efde)
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/opt/kde
    make || return 1
    make prefix=$startdir/pkg/opt/kde install
    this is a pkgbuild for kmldonkey ( a gui for mldonkey ) , the pkgbuild is based on  this post...
    http://bbs.archlinux.org/viewtopic.php? … t=mldonkey[/code]

  • File Sharing on Social Websites or with Revel fail at 98% using PE12

    I have been trying to upload a video and it keeps failing at 98% either when I attempt to load the file to a Social Website or when I tried using Revel.  I'm unfamiliar with using Revel but I have uploaded several files previously to Youtube and everything was fine.  This is the first time I've attempted to do this process with PE12 as I had PE9 before.   Any assistance would be appreciated.   Thank you.

    I was able to upload directly to Youtube through their website after creating a movie or file of my timeline.  I had hoped to by-pass this extra step by doing the uploading directly from PE12 but after multiple failed attempts, I choose to go the old way and just do it myself.
    Trace
    Date: Mon, 17 Feb 2014 21:40:42 -0800
    From: [email protected]
    To: [email protected]
    Subject: File Sharing on Social Websites or with Revel fail at 98% using PE12
        Re: File Sharing on Social Websites or with Revel fail at 98% using PE12
        created by A.T. Romano in Premiere Elements - View the full discussion
    Goldsk8te
    Please read my experiences dealing with Adobe Revel in Add Media and in the Publish+Share/Private Web Album that is  incorporated into Premiere Elements 12.
    http://www.atr935.blogspot.com/2013/10/pe12-adobe-revel-add-mediapubli shshare.html
    I felt then and do now that the features were not ready for the inclusion in a video editor.
    As for PublishShare/Social Websites you should fare better with YouTube and Vimeo. I am not involved with Facebook so I have not tried the PublishShare/Social Websites/Facebook.
    To get a baseline on the uploading situation and your account with any of these websites, I would first look at exporting your Premiere Elements Timeline to a file. See PublishShare/Computer/AVCHD and one of website presets there. Then upload the saved file to the website at the website. Then evaluate the process for your website account when using PublishShare/and one of the Social Websites.
    Please check out the above and then let us know the outcome.
    Based on your reply, we can decide what next in troubleshooting Premiere Elements Private Web Album and Social Websites.
    Thanks.
    ATR
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6131040#6131040
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6131040#6131040
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6131040#6131040. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Premiere Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Novice to setting up Windows file sharing in order to connect with macbook

    Hi everyone,
    I have been having major trouble trying to set up my Dell laptop to set up windows file sharing with my macbook pro (just got it yesterday). I am not very technically savvy, but I did enable that my C folder be shared on the network, so when I go to network places, it shows up.
    I currently have my mac and dell connected by a cat 5 cable, so they are directly connected to each other. However, I have no idea where to go from here! I have read many support sites and pages, but it doesn't make sense to me. I need a watered down version of how to make my hard drive a server.
    I also enabled file sharing on my mac , which was simple, but i am confused if i even need to do that.
    Thanks in advance for any help. It will be GREATLY appreciated!!

    1) You aren't using a router or BaseStation in this little network?
    2) If not, you will need to set IP addresses manually. Otherwise you'll have a connection, but no data flow.
    3) Your shared drive on the Dell will show up in Neighborhood on the Dell. that's normal.
    BD- Have you seen a good tutorial for this?
    PS, Amanda - sharing out your entire "C" drive is not a good idea. Once we get you networked...it will be possible for the mac to delete a folder that's inside the Dell's "C" drive. Could be a system folder that you blast...there is no RecycleBin when you delete files across a network.
    Don't mean to scare ya, just showing you the possibilities.

  • Do you practice safe file sharing? Hop on it with Soonr's services!

    When in college, I thought it would be a good idea to host all classwork & papers on my website so I could have easy access to them from anywhere ( in the days before dropbox / drive )... 
    While a good idea, I was a poor college student who forgot to pay his hosting fees.
    So, after a couple weeks I was able to pay & bring everything back up Then ACK! -  I find out that my host had deleted all data off of their servers ... (not mentioning any names, but they had some superbowl commercials)
    Long story long, I lost all my papers from the previous year and half, including one that I had been working on for weeks prior to the disconnect, a call to customer support left me with "Meh, you should have paid your bill on time" as their answer.
    Now I back up my important data in at least 2 places (sometimes 3)...

    Hey There SpiceHeads – How do you and your customers share files in your company File servers? Thumb drives? (Uh oh.) The cloud?If you use a file sharing service, is it secure? Can you be sure? Soonr offers a secure file sharing service that can help your company enable mobile workers and avoid future security nightmares, but FIRST we want to hear from you!Tell us about your most horrific file-sharing stories and how you were able to recover! TWENTY lucky SpiceHeads will win an “I Practice Safe Sharing” t-shirt (size XL) from Soonr and one SpiceHead will win a $250 AMEX gift card in addition to the shirt!Here are the rules:*FollowSoonr’s vendor page.*Enter the survey formhere.*Comment in the contest thread below with your file-sharing horror story for a SECOND ENTRY.*US & CA residents only.*Contest ends 8/18 @ 10am CST.Terms &...
    This topic first appeared in the Spiceworks Community

  • File sharing only works for users with Admin rights

    Hi.
    I am trying to set up file sharing in Lion Server but am having problems getting all my users access to shared folders. So far, only users that are "allowed to administer this server" are seeing shared files, even though they seem to have "read/write" permissions.
    Can anybody tell me what I might be missing?
    Is being allowed to "administer" the server different than truly being an Admin?
    I want to allow users to read and write files, but not change any server settings.
    Any suggestions would be appreciated.
    Thanks!

    What permissions are you setting on the share?  My guess is you are only using user, group, and other (POSIX).  You need to add an ACL to the list and then set read/write or full control.

  • File sharing between vista and xp with wrt110

    is there a way to file share when they are both hard wired to th router? if soi can some one tell me hoy to do it?  thanks

    Once you get it running you can turn the firewalls back on and put them in your trusted network.  Just turn them off to get it started.  And no to the usb cable.

  • File Sharing Service keeps crashing Error Reading Settings, File Sharing Service keeps crashing Error Reading Settings

    File sharing service keeps popping up with the error message An error occurred on the server while processing a command.  This error occurred while processing a command of type 'getConnectedUsers' in plug-in 'servermgr_afp'.
    I have tried multiple solutions on this site, unloading afp and restarting it, restarting postgres.  The file sharing tab will show up for a few seconds on the server.app config page then once someone tries to access any of the shared volumes on there, the event log shows it crashing instantly.  Error in console:
    The server '127.0.0.1' reported an error while processing a command of type 'getConnectedUsers' in plug-in: 'servermgr_afp'.  Error: Error Domain=XSActionErrorDomain Code=0 "SETTING_NOT_FOUND_ERR" UserInfo=0x7ffe6a835060 {NSLocalizedDescription=SETTING_NOT_FOUND_ERR}
    Also I get the error com.apple.launchd: (com.apple.collabd.notifications[7520]) Exited with code 1 then always followed by Throttling respawn: Will start in 10 seconds and this happens every 10 seconds without fail.

    I have started getting this error this morning:
    This error occurred while processing a command of type 'getConnectedUsers' in plug-in 'servermgr_afp'.
    Using Server 2.2.2; MacMini running OS X 10.8.5, 2 GHz Core i7 with 8 GB RAM attached to a 12TB Pegasus RAID.
    When the error appears, my users cease to be able to access file shares.
    Often, just before the error occurs, my users experience substantial slow down in the Finder's responsiveness when manipulating files on those shares.
    Restarting the Server App will produce one of several results
    1. fix the problem (rarely)
    2. fail to connect to server
    3. connect to server but not get all services running.
    The system itself resists a full shutdown, hanging at the grayish-white screen (not spinning wheel or cog or apple logo).
    I wish there was some known fix for this.

  • File sharing no longer works after upgrading from 10.3.9 to Leopard

    I'm trying to do file sharing on my PowerMac G5 with my MacBook Pro. The problem is when I try to connect to the G5 I get no response.
    Powermac G5 was just upgraded from 10.3.9 to Leopard 10.5.6 (clean install, then used Migration Assistant to copy over files). File sharing worked fine on 10.3.9 until I upgraded the G5 to Leopard (the MBP has had Leopard for several months).
    MacBook Pro is running 10.5.4.
    From the Finder I select Go->Connect to Server. I select "browse", and the window that opens shows my G5 in the list (it's the only one). I double-click on my G5 and near the top of the window it shows "Connecting..." with the little spinner at the bottom right of the window, but that is as far as it gets. Just no response after that.
    I tried to Ping the G5 but got no response.
    At first I was trying this wirelessly through my Zoom DSL modem, but to troubleshoot I hooked up the two computers directly with an Ethernet cable but got the same result. No response from the G5.
    I have File Sharing turned on in the G5's System Preferences. All 5 users have as least their write box shared. I've even set up a separate shared folder in one account.
    Please, if you have any ideas please let me know. I'm stuck.
    - LW

    Wow. 64 views and not a single reply. I found a workaround, but I can't explain it so I'm going to keep this question unanswered for now.
    I had the firewall on the G5 set to "allow only essential services", and file sharing was listed but still not working. However, if I change the firewall on the G5 to "Set access for specific services and applications" file sharing would work. I could sit there and toggle back and forth between the two settings and watch file sharing alternately work and then fail depending on the setting.
    Weird.

  • What's the best Bluetooth file sharing app for iPhone

    I'm trying to find a good BT file sharing app for an iPhone 5. I've noticed that the iPhone 5 won't even detect devices such as other phones or computers with BT but seems to have no issue with BT accessories such as satnav. My iPod touch has no problem detecting any BT device which seems odd.
    So, is there a good BT file sharing app availble for an iPhone 5?

    You won't find any Bluetooth File Sharing app that will work with non-iOS devices. That is something iOS simply does not support.

  • Server FTP File Sharing

    How do I activate the VPN, FTP, and File Sharing on my server? Also, is there a way to access my server from another machine without using my IP address without port forwarding and/or registering an internet host name? Also, I have another post on how to use VPN on server, found here: https://discussions.apple.com/message/22026213#22026213
    Please answer to both of these posts, I really want to make this server thing work.

    Do you know how to connect to my server without knowing the IP of the host and without registering for a internet domain name or port forwarding?
    This is absolutely not possible.  To connect to a remote server, somebody somewhere has to enter the identity of the target server among the billions of net-connected devices. 
    Now can that information be loaded into a client device, and can an end-user avoid having to know about these and other details of networking?  Sure.  What's variously called "provisioning" is a common approach used here. 
    There are other approaches available which can be useful on different and often on smaller networks, such as what Apple calls Bonjour; variously known as multicast DNS services and service discovery.
    There are other potential solutions.
    Also, does anyone know how to specially protect a folder in File Sharing?
    Sure.  Usually with what's called a file mode or protection mask, or via access control lists. 
    Whether the protections are effective depends greatly on who you're protecting against, and how the files are being shared.
    My server at school only allows certain users to access certain folders, but when I connect to my server I have the same username so I don't need to enter any kind of log in.
    Why not ask the folks that run the server for information?  You are affiliated with a school, and the purpose of such institutions is to learn, after all.  Ask some questions of the folks that are running the configuration you're familiar with.
    If it's a typical educational configuration, there'll be a "directory" — Microsoft Active Directory is common, though there are others — containing information mapping your identity to what you're authorized to access or do, as well as a variety of other information such as your identity and your email address and which mail server you're using for accessing your mail. 
    Can you password protect the folder?
    Directly?  Not really.  Details here depend greatly on the operating system and file system involved, and on how the files are being served, and how the files will be accessed.   File-level encryption can be used, and web servers can protect folders, and various operating systems including OS X support what are called encrypted disk images.  Web content management systems can also provide access controls, too.
    Rather than continuing this blizzard of questions, please consider providing us with some background on the problem you're looking to solve here, and some of the general requirements.  There can be many potential solutions, and even more wrong solutions.  With some idea of what you're looking to do, we might be able to give you something more specific to look into.
    As for learning more about OS X and OS X Server and server networking — all of which can provide some background and can introduce a number of these general topic areas — see the OS X Server documentation, and — for yet more detailed information — see the 10.6 server documentation that's linked from there.  The older 10.6 OS X Server documentation was much more detailed.

  • OS X Server not saving my File Sharing settings

    Hi there,
    Hoping there is someone out there who can help as there are a few head scratching issues going on!
    Basically the main issue I am getting is to do with File Sharing in OSX Server.
    I have two raid servers set up with a mac mini server acting as the link to the main network. I use GlobalSan Xtarget to mount the Raids.
    I have set up OSX Server primarily so that I can use the VPN function on the Mac Mini, otherwise it is a very simple set up. However, when I attempt to change the settings of my second raid, (As Displayed) clicking ok doesn't save the settings or infact close the window, it just does nothing, with no warning errors as to the reason why. What I am trying to do is remove allow guess users access to this share.
    Now your probably thinking why don't I just remove the opportunity for a guest to log into the server, while yes this will work, it's just that I am getting other issues that I am wondering is linked to what is happening In OSX Server.
    For instance, I have a Capture One Catalog archive which is supposed to link to a selected folder on my raids. One is for my commercial work, and one for personal. I have a raid for Commercial Work which works completely fine (All the images display and import into the catalog), and a raid for Personal Work (The raid with the file share issues in Server). When attempting to import the images from the Personal Raid, it doesn't recognise them, it knows they are there, but it doesn't recognise it as an image file. However, you can view them fine in Finder.
    I thought it was maybe a Sharing and Permisions issue, so I matched the settings from the Commercial Raid with no success. So I am wondering if it is to do with this issue I am having In OSX Server.
    To add to these points, I am also getting an Unknown User showing in the User list for the Commercial Raid, not that it seems to be causing a problem, but it is another thing thats happened since migrating the server from 10.8 to 10.9.
    Any help will be greatly appreciated!
    Thanks in advanced.
    Aaron

    Ok so I've solved the Capture One Issue, it was due to the / in the Personal/Moving name of the Raid, so that is all fine.
    But if anyone does know why server won't save the File Sharing issues, and the issues with the Unknown User, it will still be a great help!
    Many thanks,
    Aaron

  • File Sharing tab

    This thing: http://grab.by/54r7 -- Where is it. It's not appearing.
    Does anyone see this when their iOS4 device is connected, and GoodReader is installed? (Or if you don't have GoodReader, but you do see it, what app appears?)

    OK, the information was kinda buried on the GoodReader website -- this feature hasn't been enabled for the iPhone version of the app yet.
    (http://www.goodiware.com/gr-man-tr-usb.html)
    "iPhone notice: GoodReader for iPhone needs to be updated to v.2.8 in order to be used with iTunes FIle Sharing. This update is in final stages of production and will be coming very soon. However, you don't need to wait for it to use the above advanced transfer. Unlike iTunes File Sharing, advanced USB transfer works with any version of GoodReader."
    It was very confusing to see the iPad version have this feature, but the iPhone not -- but at least now we know.

  • Personal File Sharing with Fast User Switiching

    I have 2 users set up on the iBook. I want file sharing turned on for only one of the users and off for the other. Both are logged in.
    Any way to do this?
    It appears that personal file sharing is either on or off for all users.

    As far as i know either the AFP daemon is on or is off - for all users.. You can disable the Public share for a user if oyu like by using netinfo or SHarepoints but you cant turn off sharing for a user. If you have AFP active they can login. Now there may be away with some shell commands to add som config to this and disable on a user level but i havent seen it mentioned naywhere - or requested for that matter.

  • Target Mode with multiple partitions??? Also file sharing

    I am trying to connect my MacBook Pro to my older G4 using a firewire cable. My G4 has 2 hard drives, and one is divided in to 2 partitions. When I restart my G4 in target mode only the drive that is my start-up disk shows up.
    Is there any way around this?
    I've thought about just connecting my computers through file sharing but it only lets me share files in my public drive. Is there a way to share all of my files?
    Thanks,
    Justin

    Emailing you now...
    Lets say the Username on Machine#1 is jk1, Username on Machine #2 is jk2, and is an admin on #2...
    Then from Machine#1 use Go>Network, type in the name of Machine #2, (use the actual IP if the name can't find it), it should come up with the Dialog box with jk1 filled in for the name and asking for the password... but you have to change the name to jk2, (the one with permissions on Machine #2 to see everything), then type in the password of jk2.
    The only thing I can see why this wouldn't work for you is if Machine #1 can't find #2, or Permissions need Fixing on #2.

Maybe you are looking for

  • Newbie: how to pull data from different data bases to a central location

    Hello, I have no experience at all in Oracle; just in MySQL, PostgreSQL, Firebird for simple applications. I have this project where my Client wants to extract data from related 5 tables, from 12 databases in different locations. Table structure in a

  • My new mac mini doesn't detect my wireless keyboard and mouse from logitech

    I recently bought the Logitech MK550 wireless keyboard and mouse combo for my late 2014 Mac mini.  Basic functions work, however, when I try to add the keyboard and mouse in the System Preferences it can't find either one.  So right now I have this g

  • Windows xp

    Does the problem with windows xp and java only affect java applets/web pages, or would it affect running a java program in dos? To run a java program on a pc with windows xp, I would need to install JDK only. Is this correct? cheers

  • No picture on isight - just green

    Hello could someone help me? My isight was working fine, but now when i open photo booth i simply get a plain green background and no image; If i take a picture, the picture is also a blank green photo. It was working fine until a about 2 days ago? W

  • Handling ctrl+double click in a datagrid

    Hi all I want to have a different action if I double-click a row in a data grid, or hold down ctrl while double-clicking. If I double-click then the selectedItem property of the datagrid is populated even if I don't single-click the row first. But if