Re: Just a Quick Question

2011-09-14 Thread green
RiverWind wrote at 2011-09-13 18:53 -0500:
 Subject: Just a Quick Question

Please use meaningful subjects for your list messages. It makes it easier for 
people who can help you to notice your messages.


signature.asc
Description: Digital signature


Re: Just a Quick Question

2011-09-13 Thread Kumar Appaiah
On Tue, Sep 13, 2011 at 07:53:19PM -0400, RiverWind wrote:
 How does one go about turning off the screen saver on the Debian
 system? Thanks so much in advance.

It depends on which desktop environment you use
(KDE/GNOME/XFCE/Other?). Each one has its own way. Alternately, if you
run xscreensaver, xscreensaver-demo can be used to control the screen
saver.

HTH.

Kumar
-- 
Feel free to contact me (flames about my english and the useless of this
driver will be redirected to /dev/null, oh no, it's full...).
(Michael Beck, describing the PC-speaker sound device)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110914015844.gb21...@bluemoon.alumni.iitm.ac.in



Re: Just a Quick Question

2011-09-13 Thread Umarzuki Mochlis
2011/9/14 RiverWind riverw...@shellworld.net

 How does one go about turning off the screen saver on the Debian system?
 Thanks so much in advance.

 Feel free to visit my website and my blog and learn more about me
 and what I stand for.
 My Website @ 
 http://riverwind.shellworld.**nethttp://riverwind.shellworld.net
 My Blog 
 http://windraven13.**livejournal.com/http://windraven13.livejournal.com/


assuming that you're using gnome 2

System  Preferences  Screensaver
Uncheck Activate screensaver when computer is idle

-- 
Regards,

Umarzuki Mochlis
http://debmal.my


Re: Just a Quick Question

2011-09-13 Thread RiverWind

I use the gnome system; sorry I forgot to mention that.

Feel free to visit my website and my blog and learn more about me
and what I stand for.
My Website @ http://riverwind.shellworld.net
My Blog http://windraven13.livejournal.com/

On Tue, 13 Sep 2011, Kumar Appaiah wrote:


On Tue, Sep 13, 2011 at 07:53:19PM -0400, RiverWind wrote:

How does one go about turning off the screen saver on the Debian
system? Thanks so much in advance.


It depends on which desktop environment you use
(KDE/GNOME/XFCE/Other?). Each one has its own way. Alternately, if you
run xscreensaver, xscreensaver-demo can be used to control the screen
saver.

HTH.

Kumar
--
Feel free to contact me (flames about my english and the useless of this
driver will be redirected to /dev/null, oh no, it's full...).
(Michael Beck, describing the PC-speaker sound device)


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110914015844.gb21...@bluemoon.alumni.iitm.ac.in





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: 
http://lists.debian.org/pine.bsf.4.64.1109132234130.17...@server1.shellworld.net



Re: Just a Quick Question

2011-08-20 Thread Bob Proulx
RiverWind wrote:
 Ok, so I do indeed have an ssh server, and I am able to ssh into
 my ISP's shell account. However, I can not ssh over to my linux box.
 In other words, I can get out but not in.

Out uses ssh client.  In uses ssh server.

Start back at the list at step 4 or before and see where things work
and not work.  Then don't say doesn't work but instead show us
exactly the commands you are issuing and the exact output that you are
experiencing.  We can't help you otherwise.

Bob


signature.asc
Description: Digital signature


Just a Quick Question

2011-08-19 Thread RiverWind


Hey There,

I used to be able to ssh from my shellworld account into my Linux
box before I got the latest version of the squeeze disk. I am not
able to do so now. Exactly what needs to be set up or in place in
order for me to once again be able to access my Linux box via ssh
or telnet from another site?

I need to be able to do this if I am going to be able to set up my
email so that it will work with Alpine. This is because I am much
more comfortable with using Jaws for DOS as apposed to using Orca's
speech package.

I really would need to know the entire procedure. After having a
more comfortable work environment, I will then be able to work more
freely with my Linux system, as I learn the os.

As always, thanks so much in advance.

cheerio,
Riv

Feel free to visit my website and my blog and learn more about me
and what I stand for.
My Website @ http://riverwind.shellworld.net
My Blog http://windraven13.livejournal.com/


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: 
http://lists.debian.org/pine.bsf.4.64.1108191420001.88...@server1.shellworld.net



Re: Just a Quick Question

2011-08-19 Thread Bob Proulx
RiverWind wrote:
 I used to be able to ssh from my shellworld account into my Linux
 box before I got the latest version of the squeeze disk. I am not
 able to do so now. Exactly what needs to be set up or in place in
 order for me to once again be able to access my Linux box via ssh
 or telnet from another site?

1. Ensure that openssh-server is installed.

$ dpkg -l openssh-server
ii  openssh-server 1:5.8p1-7  secure shell (SSH) server ...

2. Ensure that sshd is listening on port 22.

$ netstat -na | grep '0.0.0.0:22'
tcp0  0 0.0.0.0:22  0.0.0.0:*LISTEN

3. Ensure that you can connect to the sshd port from the local host.
   Do this on the local host.

$ telnet localhost 22
...
Escape character is '^]'.
SSH-2.0-OpenSSH_5.8p1 Debian-7
^]-- Use Control-] to escape
telnet quit  -- Then type quit to exit

4. Ensure that you can connect to the sshd port from the remote host.
   Do this from the remote host.

$ telnet yourlinuxhost 22
...same as above...  ...escape to command prompt and quit ...

   If that fails look for a firewall that is blocking the connection.

# less /var/log/kern.log

5. Ensure that you can ssh to the remote host.
   Do this on the remote host.

$ ssh yourlinuxhost

6. Increase debug level.  Use one or two -v's to increase verbosity.

$ ssh -v yourlinuxhost

7. Look in /var/log/auth.log on host to determine why sshd failed.

# less /var/log/auth.log

8. Start your own debugging version of sshd and see all messages
   inline.

# /usr/sbin/sshd -d -p    -- On the local host.
$ ssh -p  yourlinuxhost   -- On the remote host.

If any of the above steps fail then stop there and fix that part
before proceeding further.

Bob


signature.asc
Description: Digital signature


Re: Just a Quick Question

2011-08-19 Thread Bob Proulx
Including the mailing list back in the discussion...

RiverWind wrote:
 I do not seem to have an ssh server installed on my system. How
 could I get one, and how extensive would the config process bee?

Easy!

  # apt-get install openssh-server

That is all that you need to do.  The server will be configured and
started automatically.

 Thanks so much for your first response; it was quite helpful to say
 the least.

Glad to help.

Bob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110819232552.ga24...@hysteria.proulx.com



Re: Just a Quick Question

2011-08-19 Thread RiverWind
Ok, so I do indeed have an ssh server, and I am able to ssh into my 
ISP's shell account. However, I can not ssh over to my linux box. In other 
words, I can get out but not in.


Riv


Feel free to visit my website and my blog and learn more about me
and what I stand for.
My Website @ http://riverwind.shellworld.net
My Blog http://windraven13.livejournal.com/

On Fri, 19 Aug 2011, Bob Proulx wrote:


Including the mailing list back in the discussion...

RiverWind wrote:

I do not seem to have an ssh server installed on my system. How
could I get one, and how extensive would the config process bee?


Easy!

 # apt-get install openssh-server

That is all that you need to do.  The server will be configured and
started automatically.


Thanks so much for your first response; it was quite helpful to say
the least.


Glad to help.

Bob


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110819232552.ga24...@hysteria.proulx.com





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: 
http://lists.debian.org/pine.bsf.4.64.1108192327410.2...@server1.shellworld.net