On Sat, Sep 29, 2001 at 12:11:01PM -0700, Ajitabh Pandey wrote:
> 
> (1.) Sorry, but I forgot the name of the file in which
> the dns addresses of the ISP are stored, as a result
> of which when I dial using kppp I am able to browse
> butwith wvdial I am not. Earlier Bish had replied for
> my same problem but I forgot the name of the file.
>

/etc/resolv.conf ... It should look something like this

search localhost
domain localhost
nameserver 127.0.0.1

search your.isp.name
domain your.isp.name
nameserver NNN.NN.NN.NN
nameserver NNN.NN.NN.NN

 
> (2.) By default GNOME is coming when I do startx. Will
> the following .xinitrc work.
> 
> /usr/bin/startkde
>

Yes, by itself it will work, but if you have .Xresources
and .Xmodmap defined, those will not be picked up. AFAIK
there is some utility in RH to swap WMs (? switch-desk), 
it is better to use that.

If .Xresources and .Xmodmap has  been  defined,  and you
want to use that, make your .xinitrc into a shell script
as follows and make it executable.
 
------------<snip>---------------

#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap

# merge in defaults and keymaps

if [ -f $userresources ]; then
    xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
    xmodmap $usermodmap
fi

# Fix your backspace and delete keys

xmodmap -e 'keycode 22 = BackSpace'
xmodmap -e 'keycode 107 = Delete'

# And then start kde

startkde

------------</snip>----------------

> Also if I want to use fvwm2 or icewm etc what are the
> commands.
>

There are no commands ... WMs are usually fired through
.xinitrc. Changing startkde to fvwm2 or icewm should do
the trick. However, if RH has an utility for  switching
WMs (IIRC, switch-desk) use it.  System  resources  and
keymaps would be incorporated.
 
> (3.) KPP is not giving me a stable connection. In Win
> we used to type some modem string (AT command), where
> to type this.
>

In kppp, there is a setup option in  modem  sub-menu in
which it is to be typed. In wvdial, type it as Init2 in
/etc/wvdial.conf.
 
Bish


-- 
:
####[ Linux One Stanza Tip (LOST) ]###########################

Sub : ext3 file system                               LOST #034

To implement ext3 filesystem have a good look here (Cool) :
http://www.uow.edu.au/~andrewm/linux/ext3/ext3-usage.html

####<[EMAIL PROTECTED]>########################################
:


_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to