quote:
Original post by BradDaBug
BUT, it still isn't working perfectly yet. It'll mount my windows partition now, but it's not setting the permissions I want. Regular users can't access the partition. I've did "chmod 755" on /mnt/windows when the drive wasn't mounted, but then when it's mounted it goes back to 744. If I try to do it when it's mounted it has no effect, it stays 744.
That's perfectly normal and there's a couple ways to handle that (that you could have found in "man mount", btw). Add one or more of the following "options" to fstab or after "mount" preceded by "-o " when you execute it:
- uid=user-name to own mounted filesystem
- gid=name of group for mounted filesystem
- users ("Allow every user to mount and unmount the file system.")
- umask=bitmask ("the bitmask of the permissions that are not present")
quote:
Original post by BradDaBug
At some point I'm gonna have to install the NVidia drivers. How much fun is that?
To do it the "Debian way"?
- apt-get install kernel-headers-version nvidia-kernel-src nvidia-glx-src
- Read the instructions in /usr/share/docs/nvidia-*-src for more information.
It's easy to repeat once you've done it before, and not that bad the first time.
quote:
Original post by BradDaBug
I added the unstable sources to the apt-get sources list and i think I upgraded to libc 2.3, but I'm not sure. It seemed way too easy.
Probably, that's what unstable is using now.
quote:
Original post by BradDaBug
I've toyed with upgrading some other stuff (gaim, mozilla) but gaim has broken dependencies and mozilla has a huge list of other stuff that needs to be upgraded, so i'm kinda scared to do that just yet.
GAIM (or more likely something it depends on) is probably temporarily weirded in unstable, try again tomorrow or get GAIM from testing (Sarge). Don't worry about Mozilla, update it if you want to, it shouldn't hurt anything. (Also, make sure you
apt-get update once a day or so in unstable before apt-getting stuff, generally.)
quote:
Original post by BradDaBug
And the dist-upgrade thingy scared me too. Do I want to do something that extreme to my poor little Debian installation that actually works ok?
The dist-upgrade option is almost like upgrade except that it will add new packages to be installed that it thinks you should have. Generally, doing a full
apt-get upgrade or
apt-get dist-upgrade isn't advisable in unstable because you'll end up downloading more than you need (new kernel versions and such, sometimes).
Edit: replied to more stuff.
[edited by - Null and Void on June 27, 2003 2:33:34 AM]