Author Topic: Slackware 10.2  (Read 13895 times)

0 Members and 1 Guest are viewing this topic.

Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #45 on: November 04, 2005, 04:53:47 pm »
If that isn't working, then CUPS probably isn't running.

Try doing "nmap localhost" (assuming you have nmap) and see if that port is open.

Code: [Select]
lamer@kompressor:~$ nmap localhost

Starting nmap 3.93 ( http://www.insecure.org/nmap/ ) at 2005-11-04 02:06 UTC
Interesting ports on localhost (127.0.0.1):
(The 1662 ports scanned but not shown below are in state: closed)
PORT     STATE SERVICE
22/tcp   open  ssh
25/tcp   open  smtp
37/tcp   open  time
113/tcp  open  auth
587/tcp  open  submission
6000/tcp open  X11

Nmap finished: 1 IP address (1 host up) scanned in 0.535 seconds

Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #46 on: November 04, 2005, 05:06:15 pm »
Oh... yea... make it rc.cups exectuable in /etc/rc.d/ :P

As root,

chmod +x /etc/rc.d/rc.cups

Then reboot.


+ newby
Quote
root@kompressor:/home/lamer# /etc/rc.d/rc.cups start
cups: started scheduler.

Edit YAYAY the http://127.0.0.1:631 works!! <3
« Last Edit: November 04, 2005, 05:08:16 pm by Super_X »

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Slackware 10.2
« Reply #47 on: November 04, 2005, 05:50:10 pm »
If that isn't working, then CUPS probably isn't running.

Try doing "nmap localhost" (assuming you have nmap) and see if that port is open.

Code: [Select]
lamer@kompressor:~$ nmap localhost

Starting nmap 3.93 ( http://www.insecure.org/nmap/ ) at 2005-11-04 02:06 UTC
Interesting ports on localhost (127.0.0.1):
(The 1662 ports scanned but not shown below are in state: closed)
PORT     STATE SERVICE
22/tcp   open  ssh
25/tcp   open  smtp
37/tcp   open  time
113/tcp  open  auth
587/tcp  open  submission
6000/tcp open  X11

Nmap finished: 1 IP address (1 host up) scanned in 0.535 seconds

You should do, as root:
chmod -x /etc/rc.d/rc.inetd
chmod -x /etc/rc.d/rc.sendmail

And reboot.  It's a good idea to get rid of some of those open ports. 

Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #48 on: November 04, 2005, 06:22:36 pm »
If that isn't working, then CUPS probably isn't running.

Try doing "nmap localhost" (assuming you have nmap) and see if that port is open.

Code: [Select]
lamer@kompressor:~$ nmap localhost

Starting nmap 3.93 ( http://www.insecure.org/nmap/ ) at 2005-11-04 02:06 UTC
Interesting ports on localhost (127.0.0.1):
(The 1662 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
37/tcp open time
113/tcp open auth
587/tcp open submission
6000/tcp open X11

Nmap finished: 1 IP address (1 host up) scanned in 0.535 seconds

You should do, as root:
chmod -x /etc/rc.d/rc.inetd
chmod -x /etc/rc.d/rc.sendmail

And reboot. It's a good idea to get rid of some of those open ports.

Done.


I'm still having trouble with those drivers, and the :631 stuff. I'll just mess around with it 'til I get it to work. Thanks for the helps, guys.
« Last Edit: November 04, 2005, 06:24:55 pm by Super_X »

Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #49 on: November 06, 2005, 12:51:18 pm »
root@kompressor:/home/lamer# installpkg wine-0.9.tar.bz2
Cannot install wine-0.9.tar.bz2: package does not end in .tgz

How do I install WINE then?

Offline Ergot

  • 吴立峰 ^_^ !
  • x86
  • Hero Member
  • *****
  • Posts: 3724
  • I steal bandwidth. p_o
    • View Profile
Re: Slackware 10.2
« Reply #50 on: November 06, 2005, 01:22:48 pm »
Well... you would have to extract it... I use tar -xvvf file but I'm sure there's a better way... I think if you don't have an updated tar command or something you have have to do bunzip file then tar -xvvf file.  Then you have to do
Code: [Select]
./configure
make
su
make install
Or something similiar according to the INSTALL file.

Otherwise, I would just download the Slackware package... http://sourceforge.net/project/showfiles.php?group_id=6241&package_id=6301

and do installpkg :P
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

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Slackware 10.2
« Reply #51 on: November 06, 2005, 01:25:57 pm »
Yeah, what he said, kinda. 

Unless you specifically downloaded a Slackware package, you can't use installpkg.  To unzip a .tar.bz2, you do:

tar -xvvjf <name>.tar.bz2

(assuming you have a reasonably new version of Tar, which you do).  It'll extract a ton of stuff, then go into the folder:
cd <folder>
./configure
make
<wait for about 2 days while it compiles>
<as root> make install


Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #52 on: November 07, 2005, 10:13:51 pm »
WINE works. Annother weird problem, thing. My mouse three like.. pastes the last selected thing into the URL screen. It's kind of annoying 'cause this mouse doesn't work that well so I have to press hard. thus, pasting it in the URL area and searcing for it. Quite bothersome.

Offline Ergot

  • 吴立峰 ^_^ !
  • x86
  • Hero Member
  • *****
  • Posts: 3724
  • I steal bandwidth. p_o
    • View Profile
Re: Slackware 10.2
« Reply #53 on: November 07, 2005, 10:26:01 pm »
Huh? I know that that mouse3 pastes the last thing you highlighted. I don't know how to get rid of it, but if you're having issues with mouse3, do mouse1 and mouse2 at the same time. I believe you do have that enabled.
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

Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #54 on: November 07, 2005, 10:30:19 pm »
You said I wasn't being literate, maybe this can help:

07:40:53) Ergot  ANBU: You're not being literate dude.
(07:42:00) HolyMother0fGod: Math does that to me, sorry.
(07:42:05) HolyMother0fGod: What do you mean?
(07:42:15) Ergot  ANBU: I don't understand your problem
(07:42:18) Ergot  ANBU: -_-
(07:42:25) HolyMother0fGod: When I click the mouse three.
(07:42:26) HolyMother0fGod: Right?
(07:42:37) Ergot  ANBU: Yea.
(07:42:39) HolyMother0fGod: It pastes my last selected thing.
(07:42:42) Ergot  ANBU: Yep.
(07:42:44) Ergot  ANBU: <3 Linux
(07:42:50) Ergot  ANBU: :D
(07:42:51) HolyMother0fGod: I don't want it to.

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Slackware 10.2
« Reply #55 on: November 07, 2005, 11:22:57 pm »
That's a feature of X.  It's probably possible to disable it, but I don't know how.  You'll have to find another forum. 

I personally like it, though, it's the only consistant way to copy/paste across X on any window manager.  Get a new mouse?  I got a good one for like $10 :P

Offline Ergot

  • 吴立峰 ^_^ !
  • x86
  • Hero Member
  • *****
  • Posts: 3724
  • I steal bandwidth. p_o
    • View Profile
Re: Slackware 10.2
« Reply #56 on: November 07, 2005, 11:46:38 pm »
That's a feature of X.  It's probably possible to disable it, but I don't know how.  You'll have to find another forum. 

I personally like it, though, it's the only consistant way to copy/paste across X on any window manager.  Get a new mouse?  I got a good one for like $10 :P
Hoho... I guessed it was something about gpm and I was right! It's fixed now... I think. I like the feature too, but he can't buy a mouse that costs half as much as his computer.
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

Offline Super_X

  • I suck.
  • Hero Member
  • *****
  • Posts: 1340
  • I suck!
    • View Profile
Re: Slackware 10.2
« Reply #57 on: November 08, 2005, 12:35:36 am »
Yeah! It works now, it only pastes what I have hilighted while it's hilighted. It uesd to do it all the time. I like it better this way.