| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Comments:
<jblack> ancker: Awesome <simmy> Chimi : Have you been to O'Reilly and checked out "Using Samba?" It's a GREAT book that's available online for free in both html and pdf form. It's available at http://www.oreilly.com/catalog/samba/chapter/book/index.html and http://www.oreilly.com/catalog/samba/chapter/book/indexpdf.html <the_ruthless> simmy: okay, obviously, then it wouldn't be good. But for the average home power user geek, there will be some times that the CPU is available for at least four-five hours during the 24-hour-period. <ancker> I don't have the time to post much...but figured I can at least point people that way. <Al-Ashtar> can I use dpkg -i *.deb ? <simmy> Al-Ashtar : Pretty sure you can. <jblack> Al-Ashtar: Yes, but it won't do what you think. <jblack> Al-Ashtar: your shell (bash) will turn it into "dpkg -i a.deb b.deb c.deb" <Chimi> okeiz simmy let me Check It out .~ Thanks .. ~ <Al-Ashtar> oh <daucus_carota> Samba is a very broad topic, lots of little changes to make. <simmy> Chimi : when I'm messing with samba (i haven't read your post yet), I start with a very basic config file and work up from there. <jblack> the channel for the last 4-5 hours has been like the good ole days. Nice and turbocharged. :) <ancker> after I get done with OpenLDAP, I get to configure FreeRadius, and make them talk....then I get to install Samba, and make it talk to FreeRadius, which talks to Active Directory.....grr <simmy> biggest mistakes... make sure you've got the same user on windows/linux and that you did "smbp***wd -a username" to ***ign it a p***word. Also... make sure "encrypt p***words = yes" is in the [global] section of the config. <jblack> ancker: dauc has gone that route. You should pick his brain <simmy> jblack : lots of real linux talk with a sprinkling of off-topic? Yeah. I've enjoyed it this morning. <Chimi> okay simmy .. but i didnt configure yet my smb.conf and smbusers i need help with them too <daucus_carota> not the radius part <jblack> /voice #linux <daucus_carota> I set up samba to use openldap on the backend <simmy> Chimi : Oh... you're starting from scratch? <daucus_carota> and then set up a trust between the AD domain and Samba domain <simmy> Chimi : Tell ya what... I"m about to head out for lunch. Take a look at that book (i'm ***uming you've got it compiled and installed already)... starting with the chapter that's immediately after installation. The one thing it forgets to tell you (in someplace obvious) is: <simmy> encrypt p***words = yes <simmy> that MUST be in [global] <daucus_carota> and then set up Zimbra to talk to the same instance of ldap. Niceness. <simmy> I'll be back in about an hour. I can help you more, then. <Chimi> oka ythanks alot ~ :) simmy <iddqd> Chimi: http://dalnet.merconline.com/node/113#comment-55 <Enchanter_tim> Zimbra ? <Chimi> okay iddqd let me check it out ~ <lapjack> yah <lapjack> It's an smtp/imap/pop3/webmail/calendaring thingy <lapjack> the web interface is all ajax, quite nice <Enchanter_tim> ancker: ive used the ..umm.. <Enchanter_tim> just a sec.. ive used tomething to integrate all that <jblack> I never heard of zimbra <jblack> Hey. I have a silly, stupid idea. <lapjack> you're going to set an exception on |{evin? <Al-Ashtar> iddqd: http://dalnet.merconline.com/node/113#comment-56 <jblack> Does anybody have time to do one article a week on a free software review? Pick a piece of software, describe it, review it, explain it. <lapjack> zimbra.com.. they've got an online demo <ancker> daucus_carota: I had this working on a test box, now I'm working it into a production environment. <lapjack> this what? <eliran_> Can you connect to Zimbra with MS outlook and schedule appointments and stuff ? <ancker> I joined the linux box to the domain as a Workstation. The NTLM auths went to radius, which recognized the MSCHAP requests and sent them to AD like they should have...it worked quite nicely. <eliran_> I heard very good things about Zimbra, btw: <lapjack> there's an outlook connector <lapjack> I don't think the calendaring gets synced though... at least not yet <eliran_> lapjack : Does it cost money ? (Both Zimbra and the connector) <lapjack> there's a paid version, and a free version <Enchanter_tim> ah, yeah. the thing is called GOsa <Enchanter_tim> :) <Al-Ashtar> Forza Italia <eliran_> How's the free version limited ? <lapjack> I'm not sure about the connector.. I don't use Outlook <lapjack> no built-in backup soltion for one <lapjack> but on the forums, it looks like some people have done some creative scripting to overcome that <Enchanter_tim> lapjack: hmm.. might be nice.. ill check it out <daucus_carota> one thing I _don't_ like <Enchanter_tim> the whole ldap thing im doing in GOsa, which is sort of nice, although not extensively documented <daucus_carota> it supplies all it's own dependencies... all its own libs, its own instances of mysql, postfix, amavis, etc <Enchanter_tim> daucus_carota: oh, thats bad. cant you just replace it with your own versions ? <Enchanter_tim> jblack: nice idea, but, as always, time is a problem here :D <lapjack> I suppose you could if you wanted to do some creative script hacking <Enchanter_tim> Online backup/restore (including mailbox-level restore) is in the paid version <daucus_carota> yup <Chimi> iddqd, i changed the Values .. which u post me .. but wat i will put the Value in WINS_SERVER_IF_ANY ? <daucus_carota> but I'm not buying the paid version for my household <daucus_carota> I use imap and have thunderbird make everything available offline.. if the server dies.. I just rebuild and copy the messages back <Enchanter_tim> daucus_carota: not? you arent willing to pay 1490 for a webmail client ? <iddqd> Chimi: if you have a wins server on your network put it's ip there, if not comment that line <Enchanter_tim> ;) <daucus_carota> Desknow is cheaper, and has jabber support <kilai_> How would I remove the first three words of a series of txt files? (in a portable way) <daucus_carota> but the interface isn't as pretty <kilai_> please someone help me <daucus_carota> kilai_, I'm guessing sed and some regex's. <jblack> I think you'd have to write a script for that. <daucus_carota> But I've never gotten the hang of regex's <lacroix> Kilai: for f in *.txt; do sed '1s/[^ ]* [^ ]* [^ ]*//' "$f" > "$f.tmp" && mv "$f.tmp" "$f"; done <lacroix> Try that. <jblack> christ. You amaze me <daucus_carota> damn. <Chimi> there is no WINS server Ip on my server . <Chimi> iddqd, <kilai_> WOW <iddqd> Chimi: fine, comment that line <Enchanter_tim> jblack: you can see why she is a senior unix consultant (iirc) <Chimi> u mean i command that ? <Enchanter_tim> although im guessing that it could be done shorter <Chimi> add new comments ? <daucus_carota> lacroix, can you come up with a regex to add 10000 to the balance in my checking account? <daucus_carota> s/regex/script/ <iddqd> Chimi: no, nevermind, just delete that line and you'll be ok <Doctor_PK> :P <lacroix> ;) <Chimi> ok i delete that lines iddqd <Chimi> wait <lacroix> Kilai: note that I didn't preserve ownership/permissions, or create the tempfiles in a "safe" way. so there's room for improvement. <THe-k-man> can someone help me please? <the_ruthless> Ask the question. <Enchanter_tim> hehe : The Solaris on-line manual pages for sed are five pages long, and two of those pages describe the 34 different errors you can get. <daucus_carota> that really depends on what you need help with <THe-k-man> is there a version of amsn for redhat 9? <THe-k-man> cos ive tried and none of the ones ive downloaded have worker <THe-k-man> worked* <Enchanter_tim> ok, i think ill be heading home <THe-k-man> anybody know? <Enchanter_tim> :) <daucus_carota> THe-k-man, there probably is.. but you should really consider running something a little more recent <THe-k-man> yeah but im only new to linux, just learning atm <Enchanter_tim> jblack: btw, do you think you have enough info ? if you need more, drop me an email, i might not be able to come back into the channel before next monday <jblack> That should be plenty. Thanks <the_ruthless> THe-k-man: you should probably get Ubuntu or Debian or Mandriva, instead of RH9. <Enchanter_tim> ok, off <THe-k-man> could i create a rpm usuing the tarball? <THe-k-man> also, where could i find the perl-base package to download? <Chimi> iddqd, i m sending u some thing there by post comment <lacroix> The-k-man: yes, of course <lacroix> The-k-man: if your real question was if that is eaiser than installing by source, then no <THe-k-man> lacroix: what do i have to do to make into .rpm? <lacroix> The-k-man: there is no short answer to that <lacroix> The-k-man: by your question, i guess you do not know what is involved with creating a rpm so i guess you will have some learnign to do <lacroix> there are tutorials on the web, though <THe-k-man> lacroix: yeah i do. what about the perl-base package? do you know where i can get that <Chimi> iddqd, <Chimi> jblack, ~ i set some valves in smb.conf <Mohua> THe-k-man: you will find life much easier if you used an up to date distro <jblack> chimi: What's my nick? <THe-k-man> what would you recommend? <Doctor_PK> jack black !! <lacroix> The-k-man: for normal end users, i would recommend ubuntu, these days <Chimi> Jblack ~ is ur nick , sorry if i ask <jblack> chimi: Great. And how long has it been since jblack has touched samba? <Mohua> THe-k-man: http://distrowatch.com/ take your pick :) <jblack> chimi: (I'll give you a hint. I said 'i haven't touched with samba in about 4 years') <Doctor_PK> lolx <Mohua> THe-k-man: take note of the rankings on the right hand side <THe-k-man> does it matter much which one i install? e.g i386 586 and so on? <Chimi> ohhh Sorr ySorryyyyy i m really sorry i though u r iddqd :) Really sorry .~ u know wat jblack i m confused too much Sorry :) <lacroix> The-k-man: yes
Return to
#linux or Go to some related
logs:
#kl behenchot #chat-world anyone wana chat about horses erekaa Please install the MySQL libraries for PHP. ubuntu shair-o-shairy #chat-world #india aunties in india
|
|