Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsDiscussion Forum → Linux.
12
Linux.
2006-10-14, 11:59 PM #1
So. I installed Slackware 11 today. I'm having some problems with it though, so maybe Massassi can help me out. In decreasing order of annoyance:

  • My NTFS partitions can only be accessed by root. If I attempt to change permissions or change ownership on the /mnt/<name> I get an error stating the filesystem is read only. If I attempt to use -t and -o flags on mount (a solution I saw somewhere) I get an error message. It would be really nice if I didn't have to run XMMS as root. Any ideas?
  • How do I kill processes? ps doesn't seem to have a "kill" switch, unless I missed it.
  • How would I go about getting my tv tuner working in linux? I downloaded and built mplayer but I can't get it to display anything other than a solid green. I see no TV.
  • My mousewheel doesn't work, and I can't find a KDE GUI setting to force it.
  • Flash does not have sound although I have gotten sound working elsewhere. Ideas?
  • Any way I can map Command Keys (IE: keyboard keys for mute, volume control, browser control, email control, etc) to actions? They don't seem to do anything by default, at least in KDE...
  • I downloaded a neat-o Window Decoration (window border skin... oh language warning, too) but it only has a bunch of PNG files, how do I get it to work? I figured out where the files go, but I seem to be missing something... RaKris' instructions don't make sense, he refers to things that don't exist in my KDE.


I will post questions as I need to ask, but for now, bed... /_\

2006-10-15, 12:53 AM #2
Well your first problem is that you chose slackware over a debian-based distro (ubuntu, debian, knoppix, etc.).

For the mouse wheel, on stupid distros like that, you typically have to edit your X config file (on my Debian it's /etc/X11/XF86Config) and put this in the InputDevice section:

Option "ZAxismapping" "4 5"

If you have x.org and not xfree, I don't know if there's a difference.

You can kill processes using the kill command. If it's being stubborn and won't die, you can kill -9 it. You need to pass the process id, which you can get either from top or from ps.

Key mapping is a window manager thing. I use IceWM and it's all handled by a config file. I don't know how KDE does it.

You really should try ubuntu first.
2006-10-15, 1:02 AM #3
Yeah, ubuntus nice. I installed with absolutely no knowledge of linux whatsoever and it works perfectly and easily, just like any OS should.

o.0
2006-10-15, 1:07 AM #4
Originally posted by Brian:
Well your first problem is that you chose slackware over a debian-based distro (ubuntu, debian, knoppix, etc.)

Yeah...not to sound elitist, but anything not Debian or Gentoo based is completely worthless. Ubuntu is the only desktop distribution worth your time.
Bassoon, n. A brazen instrument into which a fool blows out his brains.
2006-10-15, 5:16 AM #5
[QUOTE=The Mega-ZZTer]...My NTFS partitions can only be accessed by root. If I attempt to change permissions or change ownership on the /mnt/<name> I get an error stating the filesystem is read only. If I attempt to use -t and -o flags on mount (a solution I saw somewhere) I get an error message.[/quote]

Dont use the mount command directly. Edit fstab and add your mount directive with the "user" option (probably "noauto" too, so it wont automount on startup). Then, mount it as your user.

Also, depending on your kernel version (NTFS RW was only recently stabalized), you likely only have read-only access to NTFS. Which, in short, means you cant write to it.

[QUOTE=The Mega-ZZTer]...How do I kill processes? ps doesn't seem to have a "kill" switch, unless I missed it.[/quote]

So, SOO many ways to kill stuff...
If its a gui app: run "xkill" and click on the offending app.
If its a console app: use "killall NAME_OF_PROGRAM", "kill -9 PID" or use KDE's System Guard.

[QUOTE=The Mega-ZZTer]...Any way I can map Command Keys (IE: keyboard keys for mute, volume control, browser control, email control, etc) to actions? They don't seem to do anything by default, at least in KDE...[/quote]

You want EvRouter -- it will let you route *any* input to *any* function. It kicks ***.

[QUOTE=The Mega-ZZTer]...I downloaded a neat-o Window Decoration (window border skin... oh language warning, too) but it only has a bunch of PNG files, how do I get it to work? I figured out where the files go, but I seem to be missing something... RaKris' instructions don't make sense, he refers to things that don't exist in my KDE.[/quote]

My first thought; if you want your opterating system to look like Windows Vista, use Vista.

My second thought; he is referring to deKorator, which will need to be installed first.


My last thought; Slackware is *not* a user-friendly distro. You would be much better starting out with something Debian-based like Ubuntu, or even Debian itself (all I use is Debian).
And when the moment is right, I'm gonna fly a kite.
2006-10-15, 7:11 AM #6
I've done the config stuff for the mouse, we'll see if it works. [Edit: It didn't] I'm building deKorator now. [Edit: Yay deKorator is neat.]

Originally posted by gbk:
Dont use the mount command directly. Edit fstab and add your mount directive with the "user" option (probably "noauto" too, so it wont automount on startup). Then, mount it as your user.


mzzt@phoenix:/etc$ sudo umount /mnt/data
mzzt@phoenix:/etc$ mount /mnt/data
mzzt@phoenix:/etc$ cd /mnt/data
-bash: cd: /mnt/data: Permission denied

I'll reboot and see if it works.

<The_MAZZTer> yay
<The_MAZZTer> I'm going to switch to Ubuntu D:
<Max> nooooooooo
<The_MAZZTer> everyone says I'm an idiot for choosing Slackware over ubuntu D:
<torch> it depends
<Max> they are idiots ZZT
<torch> ubuntu is linux for windows users
<torch> slackware is linux for...linux users
<Max> say "Max said I should use Slackware"

I'm confused now. :(

OK NEW QUESTION

  • Flash does not have sound although I have gotten sound working elsewhere. Ideas?

2006-10-15, 7:39 AM #7
Originally posted by gbk:
Dont use the mount command directly. Edit fstab and add your mount directive with the "user" option (probably "noauto" too, so it wont automount on startup). Then, mount it as your user.


You need the option umask=0 to make it readable by everyone.

Originally posted by gbk:
Also, depending on your kernel version (NTFS RW was only recently stabalized), you likely only have read-only access to NTFS. Which, in short, means you cant write to it.


I thought the write access was limited to changing files without changing their length.

Originally posted by gbk:
So, SOO many ways to kill stuff...
If its a gui app: run "xkill" and click on the offending app.
If its a console app: use "killall NAME_OF_PROGRAM", "kill -9 PID" or use KDE's System Guard.


Or "pkill -9 NAME_OF_PROGRAM" if you want to send the signal 9 to a program by its name.

Originally posted by gbk:
You want EvRouter -- it will let you route *any* input to *any* function. It kicks ***.


Wow, this program is great. I was looking for ages for something like this, that is also easy to configure.
Sorry for the lousy German
2006-10-15, 9:24 AM #8
Originally posted by Impi:
You need the option umask=0 to make it readable by everyone.


Thanks, gbk's solution didn't work, I'll try that.

[Edit: It worked! Thank you! :D]

I still need help with the mouse problem, I still can't get the wheel to work. Buttons 4 + 5 don't seem to do anything either (Button 3 works).

2006-10-15, 9:50 AM #9
[QUOTE=The Mega-ZZTer]<Max> they are idiots ZZT
<torch> ubuntu is linux for windows users
<torch> slackware is linux for...linux users
<Max> say "Max said I should use Slackware"[/QUOTE]
Slackware is Linux for.... people trapped in 1995.

Debian is Linux for people who know what they're doing and aren't just obsessed with the first distribution they used.

Ubuntu is Linux for people who don't want to spend 6 hours poring over config files just to get their extra mouse buttons working. Hint hint.

Say "Jon says Max has a touch of the :downs:"
2006-10-15, 9:51 AM #10
You have to put:
Code:
Option         "ZAxisMapping" "4 5"

in the input device section corresponding to your mouse. The capitalization matters as far as I know.
[This message has been edited. Deal with it.]
2006-10-15, 9:54 AM #11
I did. Didn't do anything.

NEW QUESTION:

  • How would I go about getting my tv tuner working in linux? I downloaded and built mplayer but I can't get it to display anything other than a solid green. I see no TV.

2006-10-15, 9:57 AM #12
I'm so confused.
<Lyme> I got Fight Club for 6.98 at walmart.
<Black_Bishop> I am Jack's low price guarantee
2006-10-15, 9:58 AM #13
Oh, for flash to have sound, try disabling the sound daemon you are using. As soon as I stopped using artsd on my box, flash had sound.
[This message has been edited. Deal with it.]
2006-10-15, 9:59 AM #14
[QUOTE=The Mega-ZZTer]I did. Didn't do anything.

NEW QUESTION:

  • How would I go about getting my tv tuner working in linux? I downloaded and built mplayer but I can't get it to display anything other than a solid green. I see no TV.
[/QUOTE]

Depends on your tv tuner. Might wanna look into MythTV stuff, they have detailed info on installing tv tuners.
2006-10-15, 10:13 AM #15
Well mine is a noname thing with a bt848 chip (I think).

I'm building MythTV now.

[Edit:

mzzt@phoenix:~/Desktop/mythtv-0.20$ mythtv
mythtv: error while loading shared libraries: libmythtv-0.20.so.0: cannot open shared object file: No such file or directory

OK I'm gonna go download ubuntu now...]

2006-10-15, 11:35 AM #16
Screw Mythtv. You want Xawtv. Use mplayer(mencoder) when you want to record from your tuner.
And when the moment is right, I'm gonna fly a kite.
2006-10-15, 12:30 PM #17
I couldn't even ACCESS my tuner with mplayer. Although Flash seemed to find it fine (it found SOMETHING at least) and thought it was a webcam. Oh well.

I'm in XP at the moment, and I figured out why my drivers weren't working... they suck. They've worked before, and they WERE awesome, but all of a sudden now they're sucking up 100% CPU whenever a program tries to access them. I'll try installing the drivers that came with my card (I just found them, all I need now is to remember the model number....)

2006-10-15, 4:40 PM #18
[QUOTE=The Mega-ZZTer]I couldn't even ACCESS my tuner with mplayer....[/QUOTE]
Actually, you did. The fact that mplayer ran and you saw the gui means mplayer found the card.
And when the moment is right, I'm gonna fly a kite.
2006-10-15, 7:01 PM #19
Originally posted by gbk:
Actually, you did. The fact that mplayer ran and you saw the gui means mplayer found the card.


Not if it was using a dummy device. (Which it can and will do)
2006-10-16, 4:13 PM #20
WTF, I'm beginning to think I should've stuck with Slackware. Ubuntu is too buggy.

First of all, I try to use gaim to connect to IRC, because there is no xchat or anything else with ubuntu... but it doesn't support SSL over IRC and my college sabotages IRC sockets.

So I try to use apt-get to install xchat. It claims there is no package called xchat. I update it. I check and make sure the package is indeed called xchat. I try again. Still no package called xchat. Ok.

So then I download it from here: http://packages.ubuntulinux.org/cgi-bin/download.pl?arch=i386&file=pool%2Funiverse%2Fx%2Fxchat%2Fxchat_2.6.6-0ubuntu3_i386.deb&md5sum=08087284df09f4bc5aaefe203d6f20b5&arch=i386&type=main

and this package manager tells me I'm missing a dependancy.

Which I download from here: http://packages.ubuntu.com/cgi-bin/download.pl?arch=i386&file=pool%2Fmain%2Fa%2Fatk1.0%2Flibatk1.0-0_1.11.4-0ubuntu1_i386.deb&md5sum=daabcca7cd9fa5bb9379315da73efe65&arch=i386&type=main

But when I go to install it it tells me IT'S ALREADY INSTALLED.

At least Slackware CAME with programs I could use. This doesn't even have a decent media player, the only one it has gives me random errors when trying to open files off my NTFS drives.

I suppose my mouse wheel working now is a plus. And the ability to access my NTFS drives. Which isn't all that useful when I can't run programs capable of USING said files.

The installer was nice, but it didn't give me nearly as much control as slackware did, which I can understand, but the first time I ran it it failed to install because I was messing with drive mounts in terminal... drive mounts it shouldn't have had to care about.

Help :(

[Edit: Oh, and Firefox is missing DOM Inspector and middle clicking doesn't let me scroll with the mouse...]

2006-10-16, 4:48 PM #21
[QUOTE=The Mega-ZZTer]So I try to use apt-get to install xchat.[/QUOTE]Use Synaptic and search for xchat. Ubuntu has a special version of it that properly implements Gnome skinning support.
2006-10-16, 4:52 PM #22
I already tried that version I think, read the rest of my post.

And how should I get this Synaptic? apt-get? :P

[Edit: Surprisingly apt-get tells me it's already installed.]

[Edit: WRAA, xchat package was called "xchat-gnome". wtf. :mad:]

Wow, this xchat has no nicklist, the /server command doesn't work... slackware's was better... wtf.

2006-10-16, 4:57 PM #23
[QUOTE=The Mega-ZZTer]I already tried that version I think, read the rest of my post.

And how should I get this Synaptic? apt-get? :P

[Edit: Surprisingly apt-get tells me it's already installed.]

[Edit: WRAA, xchat package was called "xchat-gnome". wtf. :mad:][/QUOTE]...

Applications->Network Applications, IIRC.

Synaptic should be under the far right top menu, under Administration.

Interface. not. complex. :|
2006-10-16, 5:02 PM #24
I didn't look under Administrations... for some reason I assumed it was something I had to get.

There's no Network Applications in my Applications. Unless you mean "Internet".

Also, I found xchat users. It's a MENU. What happened to the sidebar in slackware's xchat?!?!

[Edit: Excellent, I just installed XMMS, which is working fine. Now for tor so I can get IRC fully working...]

OK... I'm trying to install tor. First, the package I downloaded doesn't work, Debian Package complains I don' t have libc6 (which I do). Synaptic won't open .deb packages. So I try to build tor from source. Which, supposedly, was something I was supposed to hate about Slackware but I find myself doing it in Ubuntu. What's worse:

Code:
mzzt@Phoenix:~/Desktop/tor-0.1.1.24$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets $(MAKE)... no
checking for working aclocal-1.4... missing
checking for working autoconf... missing
checking for working automake-1.4... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking build system type... i686-pc-linux-gnuoldld
checking host system type... i686-pc-linux-gnuoldld
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
mzzt@Phoenix:~/Desktop/tor-0.1.1.24$


I'm not seeing the appeal of Ubuntu.

[Edit: apt-get install build-essential wheeee D:]

[Edit: Fixed firefox, some arsehat turned off general.autoScroll]

[Edit: Yay, tor works]

[Edit: xchat doesn't support proxies either. WTF? I know the Slackware one did]

[Edit: I am not alone. I am going to try building xchat from source.]

2006-10-16, 5:55 PM #25
What's wrong with xchat-gnome? It works a-ok for me.
Code to the left of him, code to the right of him, code in front of him compil'd and thundered. Programm'd at with shot and $SHELL. Boldly he typed and well. Into the jaws of C. Into the mouth of PERL. Debug'd the 0x258.
2006-10-16, 6:00 PM #26
Your having alot of problems for something incredibly easy. If you stop trying to make it complicated, it wont be.

o.0
2006-10-16, 7:01 PM #27
JG: ITS doesn't make it easy. it appears they purposefully kill IRC sockets based on content. Thus I need to use tor.

There, I rebuilt xchat. Much better.

I'm not making it complicated... I just want things they way I want, not the way my OS wants them. Specifically, I want things USABLE. I find XP much better for that... although I'm not sure why I was expecting this to be easier (I suppose Linux would be more popular if it was).

[Edit: Awesome, more broken things:

- Can't copy out of a terminal window, right click -> copy does nothing.
- sudo stopped working. "Timestamp too far in the future". Stupid ubuntu installer set my system clock four hours in the future. I fix it, and this pops up.
- su is now telling me my password is wrong, even though it was just working fine for sudo until I changed the clock.

Also how the hell do I get a java plugin for Firefox? I seem to have java installed.

2006-10-16, 8:58 PM #28
Java...Plugin? :confused:

I've never needed a plugin for FF in both Windows and Linux. All I had to do was install the JVM.
Code to the left of him, code to the right of him, code in front of him compil'd and thundered. Programm'd at with shot and $SHELL. Boldly he typed and well. Into the jaws of C. Into the mouth of PERL. Debug'd the 0x258.
2006-10-16, 9:03 PM #29
well there's something installed already... I'd rather use that than install the whole JVM. Whatever. I don't really need Java I suppose.

2006-10-16, 9:34 PM #30
Originally posted by JediGandalf:
Java...Plugin? :confused:

I've never needed a plugin for FF in both Windows and Linux. All I had to do was install the JVM.


Which installs the plugin for you.
[This message has been edited. Deal with it.]
2006-10-16, 10:57 PM #31
Yeah. Oh well.

I compiled the latest wine. I'm feeling good. mIRC runs sorta iffy on it (wine has sucky MDI support... hey, I gave xchat a good try, I prefer mIRC) but it has all my scripts so...

Winamp didn't really do much though when I tried it. >.>

2006-10-16, 11:02 PM #32
[QUOTE=The Mega-ZZTer]Yeah. Oh well.

I compiled the latest wine. I'm feeling good. mIRC runs sorta iffy on it (wine has sucky MDI support... hey, I gave xchat a good try, I prefer mIRC) but it has all my scripts so...

Winamp didn't really do much though when I tried it. >.>[/QUOTE]
Have you tried xmms? It is a pretty good alternative to Winamp. It also has support for all of the Winamp 2.x themes, which is nice. I personally use Amarok though.
[This message has been edited. Deal with it.]
2006-10-16, 11:38 PM #33
[QUOTE=The Mega-ZZTer]- su is now telling me my password is wrong, even though it was just working fine for sudo until I changed the clock.[/QUOTE]umm.

Ubuntu doesn't have a root account. If you want a root prompt you need to use sudo -s.
2006-10-17, 6:12 PM #34
Originally posted by Jon`C:
Ubuntu doesn't have a root account. If you want a root prompt you need to use sudo -s.


Dont be silly, of course Ubuntu has a root account. The root password get set to a random value on install. (there was actually a bug in older versions that put the root password in the install log, which was world readable)

Hint: `sudo passwd root`
And when the moment is right, I'm gonna fly a kite.
2006-10-17, 6:16 PM #35
Originally posted by gbk:
Dont be silly, of course Ubuntu has a root account. The root password get set to a random value on install. (there was actually a bug in older versions that put the root password in the install log, which was world readable)

Hint: `sudo passwd root`
Hint: `Don't use the root account` :p
2006-10-17, 8:15 PM #36
Originally posted by Jon`C:
Hint: `Don't use the root account` :p


However, sudo with full privledges really isn't that much better than using su.
[This message has been edited. Deal with it.]
2006-10-17, 9:19 PM #37
Agreed
2006-10-18, 11:12 AM #38
hint: get vanilla debian and use the root account with caution
2006-10-18, 1:52 PM #39
Originally posted by Brian:
hint: get vanilla debian and use the root account with caution

I don't see how that is an improvement over Ubuntu.
[This message has been edited. Deal with it.]
2006-10-18, 2:30 PM #40
Originally posted by Malus:
I don't see how that is an improvement over Ubuntu.

sudo is crappy and annoying
12

↑ Up to the top!