Jump to content

coverup

Members
  • Posts

    1277
  • Joined

  • Last visited

Everything posted by coverup

  1. You can do incremental backup with tar. Have a look at this article http://linuxgazette.net/issue47/pollman.html
  2. I often see suggestions that there is no need to allocate more than 512MB to swap. However, if it's a laptop and I want to be able to suspend, then shouldn't swap be bigger than RAM by at least 30%? Also, there are buggy applications which use a lot of swap space. I had this experience with evolution 2.0.x which due to some weird bug, could actually fill up entire swap and hung the computer. With that version of evo, swap was always about 50% full.
  3. You cannot run chown to change ownership in fstab, that's why I suggested uid, gid which do exactly that. But you can add the above commands to /etc/rc.local. They will be run on every boot, so you will get the same result as if you were running them from command line. It may also be that codepage=850 0 0 was the reason you could nbot mount the partition. I copied that command from my fstab, and was to mount FAT32 buffer parttion, codepage=850 0 0 was required for that. Try removing that fragment.
  4. What if you use uid=lawrence,gid=lawrence? You need to give the user lawrence read-write permissions. It is time for man mount :D
  5. Neither. SMB is for cross platform sharing between Windows and Linux, and NFS is for sharing over the network. You just need to unmount the data partition and re-mount it giving the user read/write/execute user privileges. Assuming that the created partition /dev/hda11 was mounted during boot to the mountpoint /data, unmount it and re-mount using these commands, as root (change username, group name as relevant): # unmount /data # mkdir /home/username/newmountpoint # chown username:groupname /home/username/newmountpoint # mount /dev/hda11 /home/username/newmountpoint setuid=username,setgid=groupname,exec,users,codepage=850 0 0 (the last command must be a single line). Check if you can read and write to this partition. If everything is Ok, then add the last line (without the first word "mount ") to /etc/fstab.
  6. Create a separate "data" partition, as jkerr82508 suggested. Also, create a mount point in /home/username and mount the data partition to that mountpoint, using MCC or manually edit /etc/fstab. Your shared files will now be in /home/username/data; filebrowsing is easier that way since you always begin with a homedir. Sharing all of /home/username may not be a good idea because config files for GNOME, KDE, and other software storred in /home/username may have a slightly different structure in different distros/versions; they may not always be compatible.
  7. Thanks for this tip. You use 1024x768 on both screens... is this your LCD's native resolution? Is your external CRT capable of more than 1024x768? I would like to have native 1400x1050 on the LCD and native 1280x1024 on the external LCD (TMDS), is it possible at all?
  8. You answered your own questions :D
  9. Maybe this thread will help. The bottom line is you need to create a ~/.xinitrc file which X will use to start session.
  10. Were you by chance messing with /etc/inittab? Open terminal, and type in the command prompt: $ more /etc/inittab |grep initdefault If you see this: id:3:initdefault: you need to change it to id:5:initdefault: You can do it by editing the file as root. Or go to mandriva control center, there must be an option to boot into GUI on startup. Make sure the box is checked.
  11. You only need a WiFi manager to discover networks. You don't need to use a WiFi manager at all, if you use the laptop in two or three fixed locations (etc, home and work). I simply switch from one network to another using a script, which I run from the CLI. It is possible to link such scripts to a hot key, but I never bothered.
  12. Does anybody have an experience with Mandriva on a newer ThinkPad T61? According to ThinkWiki, users of Ubuntu/Debian have variuos kinds of trouble with them: resume from suspend does not work, the screen brightness cannot be adjusted (Nvidia), Wireless is flaky, Nvidia card drains too much power, sound does not work out of the box. Lenovo certifications for RHEL and SLED confirm that the laptop is not trouble free. I wonder if Mandriva experience is similar.
  13. To configure GNOME font properties, run gnome-font-properties from terminal. Also, you might need to try using other fonts and/or adgust dpi settings, e.g. by starting Xserver with the option -dpi. The font problem could be related to how the monitor displays text, rafter all the graphics card or Gnome/KDE only serve signals to the monitor. Make sure that monitor settings in xorg.conf are correct for your screen. If you can, try another monitor too.
  14. Assuming your desktop is KDE, right-click on the desktop and follow Create New ...-> File... -> Link to Application. In the General tab, give the shortcut a name. Next open the tab Application, and cut and paste the magic spinynorman's command in the line that says "Command". Click Ok, and the link/shortcut must appear on the Desktop.
  15. If you added pcspkr to /etc/modprobe.preload, this module should load after reboot. To see it working, eg, open konsole then go Settings->Bell-> check System Bell, then hit Backspace in the empty command prompt - you should hear bell coming from the internal PC speaker, instead of speakers connected to the soundcard. If you use only Gnome/KDE apps, this sounds like an unnecessary feature, but in Emacs, xterm, etc, I think, you won't get the system beep unless the pcspkr module is loaded.
  16. I am considering buying a dlink dwl g650m cardbus WiFi adapter. I chose this card because because it is a MiMo card, which (as dlink claims) works more reliably when the signal is weak. I saw two kinds of this card in the shop, one of them is green and another one is blue. Does anybody have an experience with any of those? Which one of them is newer/better? Can it be made work under Linux (I guess, with ndiswrapper)?
  17. Add the following line to /etc/modprobe.preload (or, if you still run a kernel 2.4 based system, /etc/modules): pcspkr
  18. ... because with static IP, one has to specify all information manually, including creating resolv.conf. See my post...
  19. Great! Though I don't get it ... If you were on a static IP address, why was the router over-writing the resolv.conf?
  20. (1) On the router, in the WAN configuration section, check whether you can specify your ISP's DNS server IP addresses. If you can - specify them (call the ISP and find out), if you cannot - the router receives them automatically, and you don't need to enter that information. (2) On the router, in the LAN configuration section, specify a static IP address for your computer. If your router supports NAT (they all do) it should allow you to do that - this is necessary if you run a server on your LAN and need to make sure that it has a permanent IP address. We will use this feature for our benefit :D . Eg, if the router's LAN address is 192.168.0.1, then your PC should be 192.168.0.2 (or 3, or 4, or 5, etc). (3) On the Linux PC, configure it to use static IP address - the same one as you configured on the router in step 2, eg, 192.168.0.2. Specify the subnet mask 255.255.255.0. Also, specify the router's IP address 192.168.0.1 as the gateway. Next open terminal, become root, fire up an editor and create/edit the file /etc/resolv.conf. The file must contain the following lines: # List the ISP's DNS servers here nameserver aaa.bbb.ccc.ddd nameserver aaa.bbb.ccc.eee # You can list your router here as well nameserver 192.168.0.1 (4) Save the file, exit editor and restart network services - run as root servce network restart That should be all.
  21. How does the PC obtain IP address from the router? If you use DHCP, the router attempts to write DNS server IP addresses received from the ISP to /etc/resolv.conf. It looks like it cannot do it for some reason, and this causes some problem which can only be cleared by booting into windows. I would guess the problem is on the router side. Did you try using a static IP address? In this case you will need to create /etc/resolv.conf yourself, the router should not attemt to assign nameservers to staticaly configured interfaces. This may clear the problem.
  22. Do you use one of the ports on the PC or do you have a hub? I have a similar problem when I am using a 4-port USB hub. The keyboard and mouse work fine since the day they were plugged in, but my Palm pilot often fails to connect, and I have a string of error messages in /var/log/messages about the device not accepting address. Once I connected directly to one of the ports on the PC, the problem's gone... Another amusing story about USB: I have a nice `space saver' mousepad with a USB hub which is not detected at all - the same message again "the device not accepting address, error -71" etc.
  23. It worked for me fine following instructions on the web. I think I had to install java runtime environment (JRE) for this to work.
  24. The article cross-references the thread on the Ubuntu Forum dated 2004(!) C-mon... On a serious note, HP was offering Mandrake on CDs back then.
  25. My understanding is that different SSIDs mean different networks. Therefore, if I move from the area covered by the router (SSID1) to the area covered by the repeater (SSID2), I have to manually disconnect from the network SSID1 and connect to the network SSID2. In principle, this is Okay, but not having to reconnect manually would be a lot more covenient, especially when signals are weak and drop-offs are frequent.
×
×
  • Create New...