Author Topic: Adding Linux [and Windows] to the network  (Read 5525 times)

0 Members and 1 Guest are viewing this topic.

Offline deadly7

  • 42
  • x86
  • Hero Member
  • *****
  • Posts: 6496
    • View Profile
Adding Linux [and Windows] to the network
« on: May 28, 2006, 02:40:52 pm »
Well, I don't know how to do this for Windows either.. so any help with that would be appreciated too.
--

How do I get it so that my computer running Slackware 10.2 with whatever kernel it came with on the CD is part of my network and I can simply transfer files over at the speed my router lets it?
[17:42:21.609] <Ergot> Kutsuju you're girlfrieds pussy must be a 403 error for you
 [17:42:25.585] <Ergot> FORBIDDEN

on IRC playing T&T++
<iago> He is unarmed
<Hitmen> he has no arms?!

on AIM with a drunk mythix:
(00:50:05) Mythix: Deadly
(00:50:11) Mythix: I'm going to fuck that red dot out of your head.
(00:50:15) Mythix: with my nine

Offline Eric

  • Full Member
  • ***
  • Posts: 304
  • I'm new here!
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #1 on: May 28, 2006, 03:04:01 pm »
Samba.

Offline deadly7

  • 42
  • x86
  • Hero Member
  • *****
  • Posts: 6496
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #2 on: May 28, 2006, 03:13:45 pm »
So I basically just run Samba on Linux and I can access Windows?
[17:42:21.609] <Ergot> Kutsuju you're girlfrieds pussy must be a 403 error for you
 [17:42:25.585] <Ergot> FORBIDDEN

on IRC playing T&T++
<iago> He is unarmed
<Hitmen> he has no arms?!

on AIM with a drunk mythix:
(00:50:05) Mythix: Deadly
(00:50:11) Mythix: I'm going to fuck that red dot out of your head.
(00:50:15) Mythix: with my nine

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Adding Linux [and Windows] to the network
« Reply #3 on: May 28, 2006, 03:50:30 pm »
So I basically just run Samba on Linux and I can access Windows?

Yes.  Make sure to put Samba on the same workgroup that your Windows Machines are running on.

Offline deadly7

  • 42
  • x86
  • Hero Member
  • *****
  • Posts: 6496
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #4 on: June 03, 2006, 02:20:46 pm »
Uh.. Samba doesn't have a Slackware binary.  What do I download?

http://us5.samba.org/samba/ftp/Binary_Packages
[17:42:21.609] <Ergot> Kutsuju you're girlfrieds pussy must be a 403 error for you
 [17:42:25.585] <Ergot> FORBIDDEN

on IRC playing T&T++
<iago> He is unarmed
<Hitmen> he has no arms?!

on AIM with a drunk mythix:
(00:50:05) Mythix: Deadly
(00:50:11) Mythix: I'm going to fuck that red dot out of your head.
(00:50:15) Mythix: with my nine

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Adding Linux [and Windows] to the network
« Reply #5 on: June 03, 2006, 02:24:21 pm »
You download the source and compile it...

http://us5.samba.org/samba/ftp/samba-3.0.22.tar.gz (I think)

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile

Offline deadly7

  • 42
  • x86
  • Hero Member
  • *****
  • Posts: 6496
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #7 on: June 03, 2006, 03:19:31 pm »
Thanks rabbit..
But when I do install it (su root , login with password, #installpkg samba-3.0.20b-i486-1.tgz) it says that it's launching the install script but it never does it.  wtf?
[17:42:21.609] <Ergot> Kutsuju you're girlfrieds pussy must be a 403 error for you
 [17:42:25.585] <Ergot> FORBIDDEN

on IRC playing T&T++
<iago> He is unarmed
<Hitmen> he has no arms?!

on AIM with a drunk mythix:
(00:50:05) Mythix: Deadly
(00:50:11) Mythix: I'm going to fuck that red dot out of your head.
(00:50:15) Mythix: with my nine

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Adding Linux [and Windows] to the network
« Reply #8 on: June 03, 2006, 06:59:57 pm »
wget http://us5.samba.org/samba/ftp/samba-3.0.22.tar.gz
tar -xvvzf samba-3.0.22.tar.gz
cd samba-3.0.22
./configure
make
sudo make install
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #9 on: June 04, 2006, 07:18:35 am »
$su
Password:
#wget http://us5.samba.org/samba/ftp/samba-3.0.22.tar.gz
#tar -xvzf samba-3.0.22.tar.gz
#cd samba-3.0.22 && ./configure || make || make install

Consolidate the steps!

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #10 on: June 04, 2006, 12:03:36 pm »
#cd samba-3.0.22 && ./configure || make || make install

Why the hell are you piping the results of configure and make? :P

# cd samsa-3.0.22; ./configure; make; make install; logout

Are you using csh or something? The only way I could see that working is if it did the step following the one before '||' if the one before '||' reported success, which sounds really neat in my mind.
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #11 on: June 04, 2006, 02:30:30 pm »
I do it in bash, and it works just fine.  If ./configure errors, make doesn't run, so make install doesn't run.

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #12 on: June 04, 2006, 02:37:09 pm »
I didn't even know that worked. Hehe.

Quote
newby@impaler:~$ echo 1 || echo 2 || echo 3
1
newby@impaler:~$
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #13 on: June 04, 2006, 05:49:04 pm »
I dunno..works fine for me :\

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Adding Linux [and Windows] to the network
« Reply #14 on: June 05, 2006, 12:56:31 am »
You meant to use && instead of ||, I think.

joe@foobar:~ $ echo 1 && echo 2 && echo 3
1
2
3
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Ergot

  • 吴立峰 ^_^ !
  • x86
  • Hero Member
  • *****
  • Posts: 3724
  • I steal bandwidth. p_o
    • View Profile
Re: Adding Linux [and Windows] to the network
« Reply #15 on: June 05, 2006, 02:13:36 am »
You meant to use && instead of ||, I think.

joe@foobar:~ $ echo 1 && echo 2 && echo 3
1
2
3

No... for him || doesn't continue on errors.
Who gives a damn? I fuck sheep all the time.
And yes, male both ends.  There are a couple lesbians that need a two-ended dildo...My router just refuses to wear a strap-on.
(05:55:03) JoE ThE oDD: omfg good job i got a boner thinkin bout them chinese bitches
(17:54:15) Sidoh: I love cosmetology