Re: openssh server remote access

2021-10-24 Thread Daryl
On Thu, 21 Oct 2021 15:26:21 -0700
dmacdoug  wrote:
 
> 
> Assuming your sshd server is on a computer attached 
> to a router which is your gateway to the internet, and 
> the router is set to forward port 22 to that computer
> some ISP's don't route port 22 traffic.  I know that 
> AT blocks port 22 traffic and it gives that message.  
> I set the sshd server to listen on port 26 instead and 
> it works fine.
> 
> Don MacDougall
> 

I'm on AT fiber and nothing is blocked. Well to be honest I haven't
tried 25 outbound but safe assumption that one is closed.



Re: change email addy

2020-02-07 Thread Daryl
On Wed, 5 Feb 2020 18:01:36 -0700
ghe  wrote:

> I need to change my email address for this list. There seems to be a
> lot about subscribing and unsubscribing on Debian's site, but I
> couldn't find anything about a new address.
> 
> Could someone who knows how to do this please let me know?
> 
> And don't send to the list. Send to ghe2...@protonmail.com.
> 
> TIA
> 

You don't change it. You unsubscribe the address. Next subscribe the
new address.



Re: Does “apt-get install” follow “recommends” links recursively?

2020-02-05 Thread Daryl
On Wed, 5 Feb 2020 16:02:07 -0800
Rich Morin  wrote:

> Debian's "apt-get install" command is documented as following
> "recommends" links by default. It also follows "depends" links,
> presumably in a recursive fashion. However, I haven't been able to
> find out if it also follows recommends links recursively.
> 
> For example, let's say that I run "apt-get install foo" and that foo
> depends on or recommends bar. I would expect apt-get to install bar
> and all of its dependencies. However, I don't know whether it would
> also install bar's recommended packages, etc. Can someone please
> clarify this?
> 
> -r
> 

Pick something and look at what it recommends, use apt-get -s to
simulate. Then do the same with one of the recommends. Do you see any
of that package recommends in the initial list?

Or, install something and look at aptitude:

aptitude why bar
aptitude why foo

etc...



Re: apache2 virtual host

2020-02-03 Thread Daryl
On Mon, 3 Feb 2020 07:40:25 +
"Russell L. Harris"  wrote:

> On Mon, Feb 03, 2020 at 08:29:30AM +0100, john doe wrote:
> >What is the content of your 'PATH' env?
> >
> >$ printf "%s\n" "$PATH"  
> 
> root@penelope:/usr/sbin# printf "%s\n" "$PATH"
> /usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
> 
> I really must turn in for the night, and resume this on the morrow.
> RLH
> 

a2ensite just a different way to
link /etc/apache2/sites-available/domain1.com.conf
to /etc/apache2/sites-enabled/domain1.com.conf

ln
-s /etc/apache2/sites-available/domain1.com.conf 
/etc/apache2/sites-enabled/domain1.com.conf



Re: could not resolve deb.debian.org after installing via debian live image

2020-02-02 Thread Daryl
On Sun, 02 Feb 2020 15:27:49 -0800
"Rick Thomas"  wrote:

> I'm not sure myself, but maybe somebody on the list knows?
> 
> Anybody know what's the procedure for adding a local disk as a repo?
> 
> Thanks in advance!
> 
> On Sun, Feb 2, 2020, at 4:15 AM, Tamar Nirenberg wrote:
> > Hi Rick,
> > 
> > Thank you for your answer.
> > 
> > The sources file contains only these lines, no reference to the
> > live installer image:
> > 
> > $ cat sources.list  
> 
> > # See https://wiki.debian.org/SourcesList for more information.  
> 
> > deb http://deb.debian.org/debian buster main  
> 
> > deb-src http://deb.debian.org/debian buster main  
> 
> >   
> 
> > deb http://deb.debian.org/debian buster-updates main  
> 
> > deb-src http://deb.debian.org/debian buster-updates main  
> 
> >   
> 
> > deb http://security.debian.org/debian-security/ buster/updates
> > main  
> 
> > deb-src http://security.debian.org/debian-security/ buster/updates
> > main  
> 
> > 
> > 
> > Do you know how I can add the USB mount (i did not use a DVD, but a
> > USB stick) as a source for the apt install?
> > 
> > Thanks,
> > Tamar
> > 
> > 
> > ‫בתאריך יום א׳, 2 בפבר׳ 2020 ב-13:45 מאת ‪Rick Thomas‬‏
> > <‪rick.tho...@pobox.com‬‏>:‬  
> >> __
> >> Hi Tamar,
> >> 
> >> I think your problem is that the box is not connected to the
> >> internet. The sources.list file left by the install process
> >> assumes you will be connected.
> >> 
> >> So take a look at /etc/apt/sources.list and comment out the lines
> >> that refer to internet sites such as deb.debian.org, Then
> >> un-comment the line(s) that refer(s) to the live installer image.
> >> Then make sure the DVD is in the drive and mounted. You should now
> >> be able to install packages from the DVD.
> >> 
> >> Good luck!
> >> Rick
> >> 
> >> On Sun, Feb 2, 2020, at 3:13 AM, Tamar Nirenberg wrote:  
> >>> Hi,
> >>> 
> >>> I installed Debian 10 on a new server using live
> >>> image:debian-live-10.2.0-amd64-gnome.iso The box is not connected
> >>> to the internet.  
> 
> >>> Installation ended successfully, but now when I try to install
> >>> open-ssh I get an error saying "could not resolve
> >>> deb.debian.org"   
> 
> >>>   
> 
> >>   

This is cross posted over to debian-live. 

What you typically would do here is use apt-cdrom add

It will ask you for a CD/DVD which it will scan and add an entry to
your /etc/apt/sources.list

In the future if you want a package: 

apt install foo 

will tell you what DVD or CD you need to insert. Works the same for
dependencies and you might need to switch out the DVD's a time or two
depending on what is required.

If you want to do this without DVD's you would need to sync a repo to a
machine on your LAN and configure a webserver to hand out the files.



Re: localhost

2020-02-02 Thread Daryl
On Sun, 2 Feb 2020 19:40:24 +
"Russell L. Harris"  wrote:

> I am attempting to configure Apache2 (in Debian 10) as a local server
> for web site development.
> 
> I see on the "Apache2 Debian Default Page" the Debian logo; the
> browser reports the image location as:
> 
> http://localhost/icons/openlogo-75.png
> 
> But when I use midnight commander to snoop around \var and other
> directories, I find no directory named "localhost".
> 
> The immediate goal of my investigation is to discover the location
> (with respect to "var/www" or "public_html") to which essential images
> such as web site logos and navigation button icons should be uploaded.
> 
> This investigation is part of my exploration of the "Perl Template
> Toolkit".  I am proceeding step-by-step through the tutorial presented
> in chapter 11 of the O'Reilly "Badger Book", but I do yet understand
> why images are not being displayed.
> 
> 

Localhost isn't a directory. It is the hostname from /etc/hosts. The
directory comes from what is configured
in /etc/apache2/sites-available/000-default.conf

Default is /var/www/html

So if you do:

printf "Found my localhost root directory\n" >> /var/www/html/test.txt

You can then navigate to http://localhost/test.txt and you'll see your
new message in your browser.



Re: How to configure e-net port again

2020-01-30 Thread Daryl
On Thu, 30 Jan 2020 19:48:36 -0600
Dennis Wicks  wrote:

> I am running Debian Buster 10, upgrade within the past week.
> 
> I tried to change my e-net to use dhcp, which I thought it 
> was but it wasn't picking up all the info from the DHCP 
> server, specifically the IP addr. Now it doesn't work at 
> all. How can I run through the setup/init process that it 
> went through at install to get back at least a working 
> communications port.
> 
> Many, many TIA!!
> Dennis
> 

What's in /etc/network/interfaces?



ipw2100 firmware issues of random network connection lost.

2012-02-03 Thread Daryl
I'm currently running debian unstable, but have tried stable as well to try
and narrow down my issue.  As of current when I'm connected to my lan my
network card works properly for a while then will drop out.  The card I'm
using uses the the ipw2100 firmware which from researching a bit has
firmware failures and requires the kernel module be unloaded and loaded
again to reset it to get it work again.  Just wondering if anyone might
have ran into this same problem and found a work around or fix for this
problem.   Thanks

Daryl Dennis


ext4 - 52.2% non-contiguous

2009-07-06 Thread Daryl Styrk
I'm trying to understand what is causing fsck to report /dev/sda4 being
highly fragmented.  The filesystem is only a couple days old.  I created
the it with mke2fs -t ext4.

After initially building the filesystem I ran fsck which showed something
like 0.7% if I remember correctly.  I then copied about 60GB from an ext3
via rsync after which the fragmentation showed up.  

I'm running Sid, 2.6.30-1-amd64 and have e2fsprogs 1.41.7-1.

Here is the snippet after a forced fsck on reboot.

Mon Jul  6 17:43:17 2009: Activating swap...done.
Mon Jul  6 17:43:17 2009: Checking root file system...fsck 1.41.7 (29-June-2009)
Mon Jul  6 17:43:17 2009: \002/dev/sda3: 141728/917504 files (0.2% 
non-contiguous), 774394/3664828 blocks   
Mon Jul  6 17:43:17 2009: done.
Mon Jul  6 17:43:17 2009: Setting the system clock.
Mon Jul  6 17:43:18 2009: Cleaning up ifupdown
Mon Jul  6 17:43:18 2009: Loading kernel modules...done.
Mon Jul  6 17:43:18 2009: Checking file systems...fsck 1.41.7 (29-June-2009)
Mon Jul  6 17:43:18 2009: \002/dev/sda1: 28/26104 files (7.1% non-contiguous), 
24372/104388 blocks   
Mon Jul  6 17:43:19 2009: \002/dev/sda4: 16776/14278656 files (52.2% 
non-contiguous), 20261557/57111075 blocks   
Mon Jul  6 17:43:30 2009: done.


This is a snippet from e2fsck -fpDC0 -E fragcheck /dev/sda4 the full
7000 lines are here http://pastebin.com/f62a00b8c


2490449: expecting 10078208 actual extent phys 10140672 log 1024 len 107
2490449: expecting 10140779 actual extent phys 22521929 log 1131 len 10
2490450: expecting 10076160 actual extent phys 10078208 log 512 len 48
2490451: expecting 10079232 actual extent phys 10138112 log 512 len 454
2490452: expecting 10079744 actual extent phys 10139136 log 512 len 38
2490453: expecting 10081280 actual extent phys 10141696 log 1024 len 365
2490455: expecting 10082304 actual extent phys 10143744 log 1024 len 288
2490457: expecting 10084352 actual extent phys 10144768 log 1024 len 251
2490460: expecting 10086400 actual extent phys 10145792 log 1024 len 166
2490462: expecting 10087424 actual extent phys 10146816 log 1



Are there other checks I should/can perform?  Should I have formatted the
filesystem a different way?  I followed the guide at 
http://ext4.wiki.kernel.org/index.php/Ext4_Howto .  This is not a
production system and needing to reformat is no big deal.
  

I googled around a bit only finding one post with fsck reporting over 100%
non contiguous.  Could this be a bug?

Ideas?

-- 
Daryl Styrk
Naples FL, USA


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



Re: DVD download

2009-07-05 Thread Daryl Styrk
On Sun, Jul 05, 2009 at 05:40:42PM -0400, Mark Neidorff wrote:
 
 I'm using firefox 1.08 on a redhat 3 system.  The download window shows a 
 file 
 size of 2097.2 MB.  There is almost 5 Gb of free disk space (yes, I'm sure) 
 so that is not the issue.
 





Are you able to use wget?  

wget -c \
http://cdimage.debian.org/debian-cd/5.0.2/amd64/iso-dvd/debian-502-amd64-DVD-1.iso


-- 
Daryl Styrk
Naples FL, USA


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



Re: OT mutt config question

2009-07-02 Thread Daryl Styrk
On Thu, Jul 02, 2009 at 12:49:22AM -0400, Eric d'Alibut wrote:
 I want mutt's PGP menu to default to 'sign (inline)'. Does anyone have
 a hook or muttrc that does this?
 
 I can of course set that menu to default to 'sign (PGP/MIME),' but --
 contra much advice -- I want the 'inline' option.
 


set pgp_autoinline = yes
-- 
Daryl Styrk
Naples FL, USA


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



Re: Gmail filtering. NOT OT

2009-07-01 Thread Daryl Styrk
On Wed, Jul 01, 2009 at 11:40:26AM -0500, John W Foster wrote:

 all mail, so I would never get it in a download. I really don't want to
 mess with 'fetchmail, mutt, or any of the other possible means of
 solving this if I can locate a way to do what I want. I also don't want
 -- 
 John Foster

-Mutt-
All mail clients suck. This one just sucks less. 

fcc-save-hook ~C debian-user@ +Debian-User

done
-- 
Daryl Styrk
Naples FL, USA


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



Re: Gmail filtering. NOT OT

2009-06-30 Thread Daryl Styrk
On Tue, Jun 30, 2009 at 11:31:56AM +0200, Nicolas KOWALSKI wrote:
 
 For this, I usually define a filter in the Gmail webui, to label
 mailing-list incoming or outgoing posts. 
 
 In the present case, in the 'Has the words' field, I entered:
 
 list:debian-user.lists.debian.org OR to:debian-user@lists.debian.org
 
 Then I checked the Apply the label option, with a debian-user label.
 
 
 This way, when I receive or send messages from/to the list, they are
 _all_ labelled as debian-user, including the one stored in Sent
 Mail. This works well, for me at least.
 
 Hope this helps,

Nicolas,

How do you access your mail?  Webmail, IMAP, POP?  

-- 
Daryl Styrk
Naples FL, USA


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



Re: scroll heel problem

2009-06-30 Thread Daryl Styrk
On Tue, Jun 30, 2009 at 10:27:40PM -0700, Robert Holtzman wrote:

 You're right, it stopped the attempts to connect to a phony URL. This  
 raises the question: why doesn't my desktop computer running the same  
 distro exhibit the behavior even though Use autoscrolling isn't  
 enabled?

Different mouse?  Different versions of iceweasele?  My T61 has a 3
button mouse and the ability to scroll with the track pad or both.  Only
the 3rd button has any effect on pasting text or behaving like you've said
before selecting autoscrolling. 
-- 
Daryl Styrk
Naples FL, USA



signature.asc
Description: Digital signature


Re: New Dell netbook Ubuntu,Debian,login problems-part 2.

2009-06-29 Thread Daryl Styrk
On Mon, Jun 29, 2009 at 11:27:28AM -0700, luis_a_mace...@yahoo.com wrote:
 
 Thanks to all who promptly have responded to my first question.Now I have a
 more effective knowledge about some of the differences between the two worlds
 in terms of power accounts,but I now see that my problem is:
 I do not know what is my Ubuntu user password,it do not come with the netbook
 package(I purchased the netbook with a great discount price possibly from a
 returned buy from another person,I do not see any card or so with login
 information).When I turn on the netbook I get automatically into the d1ell
 account of which I do not know the password.Anyway,this user name d1ell seems
 pretty standard to me,so are there probably any standard password?I tried
 dell but it do not work.Have anyone experienced something similar buying a
 new laptop?

I recommend booting into single-user mode and changing the root password.
http://aplawrence.com/Linux/lostlinuxpassword.html
Once you have established the root password, su to root then add a new
user account for yourself.  After you have your account made run 'visudo'
as root and add yourself to the sudoers file.  See the man page for better
reference but you could add something like the following to the file.

# User privilege specification
rootALL=(ALL) ALL
luisALL=(ALL) ALL

Once you have yourself added to the sudoers file you can then select a
random password for root in the User and Group option in
SystemAdministrationUsers and Groups.  
Log out and log back in as luis (or whatever you created) and you should
be all set.  

Something else you may want to try is simply sudo su to see if you become
root as you would in either knoppix or dsl.

-- 
Daryl Styrk
Naples FL, USA


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



Re: scroll heel problem

2009-06-29 Thread Daryl Styrk
On Mon, Jun 29, 2009 at 03:32:47PM -0700, Robert Holtzman wrote:
 Just installed Lenny on my Dell d600 laptop. Any attempt to use the  
 mouse wheel results in an attempt to connect to a url consisting of  
 whatever I last copied to the clipboard and tells me it can't connect  
 (of course since what was on the clipboard wasn't a url). This distro,  
 loaded from the same cd doesn't exhibit the behavior on my desktop
 box. Any ideas or pointers appreciated.

This is while your using a browser?  Gnome? KDE? 

-- 
Daryl Styrk
Naples FL, USA


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



Re: No music playback

2009-06-29 Thread Daryl Styrk
On Mon, Jun 29, 2009 at 06:41:46PM -0400, JoeHill wrote:
 
 This is strange: I can play video files with sound, I can play flash video 
 with
 sound, but when I try to play a music file (mp3) in either Rhythmbox or Exaile
 the progress bar does not move and the file will not play.
 
 I don't know if this is related, but I have two volume icons in my panel, the
 one that I added myself and now one in the notification area. They appear the
 same, but the icon in my panel has the usual config options, whereas the icon
 in the notification area has a minimal menu with prefs that look like the ones
 for Pulseaudio.
 
 System is Testing/Unstable.
 
 -- 
 J

I don't think Debian ships with mp3 playback out of the box.  I don't know
the exact package that handles it.  Amarok pulls everything it needs.. 

$ aptitude search ~dmp3 | grep ^i

i A libflac8- Free Lossless Audio Codec - runtime C libr
i A libmad0 - MPEG audio decoder library
i A libmp3lame0 - LAME Ain't an MP3 Encoder 
i A libmpcdec3  - Musepack (MPC) format library 
i A libmtp7 - Media Transfer Protocol (MTP) library 
i A libmusicbrainz4c2a  - Second generation incarnation of the CD In
i A libnjb5 - Creative Labs Nomad Jukebox library   
i A libopenal1  - Software implementation of the OpenAL API 
i A libsdl-mixer1.2 - mixer library for Simple DirectMedia Layer
i A libshout3   - MP3/Ogg Vorbis broadcast streaming library
i A libsmpeg0   - SDL MPEG Player Library - shared libraries
i A libtag1c2a  - TagLib Audio Meta-Data Library
i A libtagc0- TagLib Audio Meta-Data Library (C bindings
i A libtunepimp5- MusicBrainz tagging library   
i A libtwolame0 - MPEG Audio Layer 2 encoding library   
i A libvlc0 - multimedia player and streamer library
i A libxine1- the xine video/media player library, meta-
i A libxine1-plugins- the xine video/media player library, meta 
i A python-mutagen  - audio metadata editing library
i A rhythmbox   - music player and organizer for GNOME  
i A serpentine  - An application for creating audio CDs 
i   vlc - multimedia player and streamer
i A vlc-nox - multimedia player and streamer (without X 

Everything works fine here.  I assume one of the above will take care of
everything.  

-- 
Daryl Styrk
Naples FL, USA


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



Re: etch-to-lenny upgrade problem...

2009-06-29 Thread Daryl Styrk
On Mon, Jun 29, 2009 at 04:46:34PM -0700, Adriano Trentini wrote:
Hi.
I'm not professional. I have Lenny installed in a AMD Duron.   
Why to upgrade etch if you can simply install Lenny?   

Are you asking why upgrade instead of doing a clean install?

-- 
Daryl Styrk
Naples FL, USA


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



Re: scroll heel problem

2009-06-29 Thread Daryl Styrk
On Mon, Jun 29, 2009 at 05:06:30PM -0700, Robert Holtzman wrote:
 On Mon, 29 Jun 2009, Daryl Styrk wrote:

 On Mon, Jun 29, 2009 at 03:32:47PM -0700, Robert Holtzman wrote:
 Just installed Lenny on my Dell d600 laptop. Any attempt to use the
 mouse wheel results in an attempt to connect to a url consisting of
 whatever I last copied to the clipboard and tells me it can't connect
 (of course since what was on the clipboard wasn't a url). This distro,
 loaded from the same cd doesn't exhibit the behavior on my desktop
 box. Any ideas or pointers appreciated.

 This is while your using a browser?  Gnome? KDE?

 Damn! Got called away in the middle of composing the message and hit  
 send without looking when I got back.

 Gnome w/ Firefox.

 Sorry.

Easy fix.  EditPreferencesAdvanced 
Under Browsing check the box Use autoscrolling


-- 
Daryl Styrk
Naples FL, USA


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



Re: Gmail filtering. NOT OT

2009-06-29 Thread Daryl Styrk
On Mon, Jun 29, 2009 at 06:51:54PM -0500, John W Foster wrote:
 I need to know how to keep gmail/ or maybe my own mailing list setting,
 from filtering out replys to posting on debian user and other debian
 lists.
 scenario: 
 When I post an answer or a questions to this list or any debian list. I
 do not recieve the replies that are sent to my mailbox at gmail.com.
 Most or all of the other messages/posts do come thru. Seems that
 something is filtering out anything with my name as the sender or
 something. Not sure if this is explained prpoerly but if you have a
 gmail account maybe you can reply. FWIW: if you do not hit reply all to
 this I will never see the response. That is exactly the problem.
 Thanks!
 -- 
 John Foster

I forget exactly why it happens but it is gmails fault.  I would bet that
if you were to look in your gmail web account you would see the message
properly filtered.  I used to use IMAP and filtered everything with gmails
labels which made gmail work as expected.  I have since dropped IMAP for
POP and I'm back in the same boat.  I don't see my replies to the list,
nor do I see new messages I send to any list where you would expect to see
your bounced message.  

I read on I think mutt-users that gmx.com handles mail much better.
However setting up exim4 to work properly with their server has eluded me and 
I really enjoy how well gmail is handling spam.  Depending on your MUA I
believe there are a few workarounds with hooks.  I have no idea what you
can pull together with Evolution.  

-- 
Daryl Styrk
Naples FL, USA


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



Re: Goodbye debian

2009-06-25 Thread Daryl Styrk
On Thu, Jun 25, 2009 at 08:26:25AM +0800, 明覺 wrote:
 I do not have time to read your replies about another discussion
 anymore for they are useless, and I do not feel happy with all you
 debian guys, so I leave this mailing list, also debian has no
 attraction to me anymore, I will stop using it from now.
 As I have decalared, I will build my own OS and applications by a
 Only One Programming Lanuguage way.
 Good bye! :)

Ah.. Progress in Debian how nice... 

-- 
Daryl Styrk
Naples FL, USA


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



Re: Goodbye debian

2009-06-25 Thread Daryl Styrk
On Thu, Jun 25, 2009 at 07:08:34AM -0500, Allen Meyers wrote:
 I have not followed this thread and getting in only at the end but it
 caught my attention simply because I left Ubuntu for the very same
 reason, but my ire was directed towards the idiots not the experienced
 users.
 I have tried 6 Linux OS to date and without a doubt it is far superior
 to the other I have tried and I will continue with you guys

Everyone climbs the tree soon enough.. 

-- 
Daryl Styrk
Naples FL, USA


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



Re: Testing update wants to replace network-manager - will it be seamless?

2009-06-20 Thread Daryl Styrk
On Sat, Jun 20, 2009 at 06:05:40PM -0400, Patrick Wiseman wrote:
 Hello:
 
 I can't afford to lose network access just at the moment, so should I
 wait to do today's update on my testing system (amd64)?  I've
 previously had troubles with network-manager but it's been working OK
 lately.  Will the update, so far as anyone knows, preserve settings,
 etc.?  Thanks for any guidance.
 
 Patrick
 

With what?  wicd works great here on Lenny, and perfect on my other
Squeeze machine.  It was seemless. 
-- 
Daryl Styrk
Naples FL, USA


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



Re: 30 Minutes (system time/ntpdate/dovecot)

2009-06-07 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, Jun 07, 2009 at 05:07:08PM +0300, David Baron wrote:
 Has been happening quite a bit lately:
 
 Problem with ntpdate. If and when it finally works, get a change of 10,800 
 seconds ... that is 30 minutes.
 
 The dovecot IMAPd server is unreadable. Restarting it yields a complaint 
 about 
 10,800 seconds of time, killing itself now! Restarting it again works OK.
 
 What's happening? Bug? Fix?

I've had nothing but great results with chrony.  Aside from an issue of
chrony falling back to 127.127.1.1 when it cannot connect to a ntp server.. 
Which happens often with my laptop as I move around during the day..  I 
fixed that by restarting the service hourly with cron.  I'm never more 
than a half second off across boots and stupid accurate while connected. 

System time : 0.00 seconds fast of NTP time

http://www.linuxjournal.com/article/5657
- -- 
Daryl Styrk
Naples FL, USA

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkor1eYACgkQ6baBhW8CzrgmpQCfWe4RNDLP004TwGkOVmOVNzn7
esAAnAjmV5PTMVGdK/pDz5mWPpHIZtQm
=bbnl
-END PGP SIGNATURE-


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



Re: flash drive encryption between different OS's

2009-06-06 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Jun 05, 2009 at 04:52:40PM -0700, David Christensen wrote:
 
 I recently went down the same path and settled on LUKS on Linux and
 FreeOTFE on Windows XP.  I wrote a couple of HOWTO's that should get you
 started:
 
 http://www.holgerdanske.com/node/455
 
 http://www.holgerdanske.com/node/456
 
 
 I later bought a 1.5 TB external drive for backup images.  I ran into
 two limitations:  FAT32 doesn't support files larger than 4 GB (I have
 *.avi files larger than that) and Linux cannot write to NTFS partitions.
 So, I ended up creating an ext2/LUKS partition on Linux, moving the
 drive to Windows, mounting the partition with FreeOTFE, and formatting
 the partition with NTFS.  The backup images are created on Windows by
 Perl scripts and GNU tools on Cygwin, and I can move the drive to Linux
 and read the images if I need to.

I your partition example a go and I think that will work nicely for
now at least.  I saw the option in FreeOTFE to have it install to the
disk.  Carrying the decryption software with you would be a bonus.
I went back and made sdb1 = 10M FAT32 , and the difference to sdb2.
Then I followed your example again for sdb2 but I wasn't able to get
windows to mount sdb2. Windows decided to mount sdb1 and ignore sdb2. I
forget the exact error but something about assigning a drive letter.  OT
for this list, but it's something I'll keep digging into. 

- -- 
Daryl Styrk
Naples FL, USA

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoqraAACgkQ6baBhW8CzrgRZQCfZRm2RXpECKm1vUfiOMJdYv8w
gOgAnjDVj0cg7hfx6APQMk94posf9b+r
=nEsh
-END PGP SIGNATURE-


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



Re: changing to UTF-8

2009-06-05 Thread Daryl Styrk
On Fri, Jun 05, 2009 at 12:55:29PM -0400, Andrew Schulman wrote:
 In order to avoid problems with CUPS (yes Master, I shall comply) and get
 consistency within my LAN, I'm finally giving up on the ISO-8859-1 locale
 and switching my desktop host to use UTF-8.  I've already corrected
 /etc/locale.gen, to change the default locale to UTF-8:
 
 $ egrep -v '^(#|$)' /etc/locale.gen
 en_US UTF-8
 en_US.ISO-8859-1 ISO-8859-1
 
 then reran locale-gen.  For the most part everything works fine.  I ran
 utf8migrationtool, which found no problems.  'locale' shows that everything
 is 'en_US', and 'locale charmap' returns UTF-8.  And CUPS and hplip will
 now talk to each other again, hooray.  But there is one minor problem:
 
 When I view some man pages, some characters, e.g. a bold-face pipe or
 single-quote character, are displayed wrong in the terminal, usually as an
 â (a with circumflex).  If I set LC_ALL=en_US.ISO-8859-1 first, then the
 characters are displayed correctly.
 
 What's causing this problem, and how can I fix it?  
 
 Thanks,
 Andrew.
 

You could try cleaning things up a bit with 'localepurge'

-- 
Daryl Styrk
Naples FL, USA


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



flash drive encryption between different OS's

2009-06-05 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I'm looking for a solution to encrypt a flash drive formated in FAT32 so
it can easily be decrypted across multiple OS's with the least amount of
software needed.  

I don't know a whole lot about Windows and what comes installed if
anything by default to handle encryption.  I tried luksformat /dev/* but
then on a XP machine it didn't think the drive was formatted. 

I saw TrueCrypt as a possible option for both Linux and Windows, but I
would prefer to keep software requirements on a different machine to
default out of the box options if possible. 

I did look over the forum archives and googled around a bit, but I suppose
my search terms are not finding anything useful. 

I am thinking if software will be a requirement, I could just put two
partitions on the drive one say a 50M or so unencrypted to hold needed
software, then encrypt the difference.  But that would not solve the
possible problem of say needed to use the drive at the local library
possibly. 

Ideas or better search terms?

- -- 
Daryl Styrk
Naples FL, USA

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkopeOkACgkQ6baBhW8Czrj3rwCdHZiWvM6TGucyafvbZ2F5KTY+
vOYAnRJuFII4W+H2OsuI2AZUnHolMk3r
=qg+s
-END PGP SIGNATURE-


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



Re: bash alias ineffective?

2009-06-05 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Jun 05, 2009 at 03:43:25PM -0400, Tony Baldwin wrote:
 I put
 alias rm='rm -i'
 in .bashrc
 but rm still removes without asking for confirmation.

 Why?

Log out of the shell and back in again.  

- -- 
Daryl Styrk
Naples FL, USA

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkopegIACgkQ6baBhW8CzrirLgCfTDihbakqqm87ttckY7WIbAC3
fj0An2VQt8lSUyFMiUaAPjAtJrWNdu7C
=Gc79
-END PGP SIGNATURE-


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



Re: 64Bit installation on a 500 GB Sata DRIVE

2009-06-03 Thread Daryl Styrk
On Wed, Jun 03, 2009 at 01:46:50PM +0800, Rod James Bio wrote:
 We've been doing an installation on this LTSP Server we are trying to
 build. While formatting the 500 GB HD the partitioning
 process is stock at 33%. Can anyone suggest if there are limitations or
 problems or past experiences?

I've had a few installs apparently hang at 33% for a while.  Then it would
jump from 33% to complete in no time.  As if the indicator was incorrect. 

-- 
Daryl Styrk
Naples FL, US


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



Re: iwlist wlan0 scan problem with iwl4965

2009-06-02 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, Jun 02, 2009 at 07:35:15PM +1000, Alex Samad wrote:
 
 ifconfig wlan0 up
 iwlist wlan0 scan
 

+1 with same hardware here. 

- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkolc+MACgkQ6baBhW8CzrgjMQCfU0BHxZFE2lrwxZh1n41y2kTB
y+kAn05x/+Y9Tzw3AuokjHNJ4Ep1aFW+
=IAvW
-END PGP SIGNATURE-


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



Re: aptitude or apt-get: how to use the jolly character?

2009-06-01 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Jun 01, 2009 at 03:24:23PM +0100, Rodolfo Medina wrote:
 Suppose that I want to remove all the packages beginning with `texlive', that
 are a lot in my system.
 
 If I do: `aptitude purge texlive*', the system complains that no package has
 that name.
 
 How to do then?

aptitude -s purge ~ntexlive

Should show you some good results.  -s will simulate what would happen. 
- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoj3PMACgkQ6baBhW8Czrg/OQCfRVh8+0hoYAu4wqWHDBAFUW7M
VeUAmwQiCSKCUK6JLY4XXAiYr/mbDFAA
=2V/W
-END PGP SIGNATURE-


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



Re: grub error 25

2009-05-31 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sat, May 30, 2009 at 08:19:46PM -0700, andmalc wrote:
 So, yeah, looks like one of the lines the grub boot definition that you're
 booting with.
 
 Reboot, then when you see the blue Grub screen press 'e'.  This will put you
 in edit mode.  Read the edit options at the bottom.  You can use tab
 completion in the editor to confirm what you're entering, for example type
 
 grub edit root (
 
 then press Tab to see a list of drives

I got it going.. I cheated and used SuperGrub once I get to a computer
that could burn a CD.. 

- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoidsoACgkQ6baBhW8Czrjs6wCeKcu3Mrq8IAUmhXmYr1LCHnug
pPYAnjkDMssPYKB61C2KWRBZMloxxrCg
=I7Ok
-END PGP SIGNATURE-


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



grub error 25

2009-05-30 Thread Daryl Styrk
Hi list.. I was attempting to direct the debian installer to /dev/sdb1
a flash drive.
I am now stuck with a broken system and don't know where to go from here.. I
am posting this from knoppix.  I suppose I need to edit something in
/boot/grub/
but I don't know exactly what..

Here is fdisk -l

Disk /dev/sda: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xed1f86f7

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   *   1364829302528+   7  HPFS/NTFS
/dev/sda2   29644   30401 6085800   12  Compaq diagnostics
Partition 2 does not end on cylinder boundary.
/dev/sda3   28429   29643 9759487+  83  Linux
/dev/sda43649   28428   1990453505  Extended
/dev/sda5   *36493691  345366   83  Linux
/dev/sda636924299 4883728+  83  Linux
/dev/sda743004664 2931831   83  Linux
/dev/sda846654994 2650693+  82  Linux swap / Solaris
/dev/sda949955043  393561   83  Linux
/dev/sda10   5044   28428   187839981   83  Linux

Partition table entries are not in disk order


I don't know why two partitions are flagged at boot..

I would appreciate some help to get up and running again.

Daryl


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



Re: convert e-mails to pdf / ps

2009-05-29 Thread Daryl Styrk
On Fri, May 29, 2009 at 09:52:56PM +0200, Jochen Schulz wrote:
 
 mutt + muttprint give acceptable results, but I have no idea how to
 script it.
 


Wow muttprint want the following... 


$ aptitude install -s muttprint
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Reading extended state information  
Initializing package states... Done
Reading task descriptions... Done  
The following NEW packages will be installed:
  doc-base{a} dvipdfmx{a} lacheck{a} latex-beamer{a} latex-xcolor{a} 
  libfreezethaw-perl{a} libmldbm-perl{a} libuuid-perl{a} lmodern{a} 
  muttprint pgf{a} preview-latex-style{a} prosper{a} ps2eps{a} 
  tetex-extra{a} tex-common{a} texlive{a} texlive-base{a} 
  texlive-base-bin{a} texlive-base-bin-doc{a} texlive-bibtex-extra{a} 
  texlive-common{a} texlive-doc-base{a} texlive-extra-utils{a} 
  texlive-font-utils{a} texlive-fonts-extra{a} texlive-fonts-extra-doc{a} 
  texlive-fonts-recommended{a} texlive-fonts-recommended-doc{a} 
  texlive-generic-extra{a} texlive-generic-recommended{a} 
  texlive-humanities{a} texlive-humanities-doc{a} texlive-lang-croatian{a} 
  texlive-lang-cyrillic{a} texlive-lang-czechslovak{a} 
  texlive-lang-danish{a} texlive-lang-dutch{a} texlive-lang-finnish{a} 
  texlive-lang-french{a} texlive-lang-german{a} texlive-lang-greek{a} 
  texlive-lang-hungarian{a} texlive-lang-italian{a} texlive-lang-latin{a} 
  texlive-lang-mongolian{a} texlive-lang-norwegian{a}
texlive-lang-other{a} 
  texlive-lang-polish{a} texlive-lang-portuguese{a}
texlive-lang-spanish{a} 
  texlive-lang-swedish{a} texlive-lang-vietnamese{a} texlive-latex-base{a} 
  texlive-latex-base-doc{a} texlive-latex-extra{a} 
  texlive-latex-extra-doc{a} texlive-latex-recommended{a} 
  texlive-latex-recommended-doc{a} texlive-math-extra{a} 
  texlive-pictures{a} texlive-pictures-doc{a} texlive-pstricks{a} 
  texlive-pstricks-doc{a} texlive-publishers{a} texlive-publishers-doc{a} 
  texpower{a} texpower-manual{a} tipa{a} 
0 packages upgraded, 69 newly installed, 0 to remove and 0 not upgraded.
Need to get 335MB of archives. After unpacking 669MB will be used.



To print?  


-- 
Daryl Styrk
Naples, FL USA


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



Re: Backports for Lenny ?

2009-05-28 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, May 28, 2009 at 07:21:09PM +0200, Johannes Wiedersich wrote:
 S. Fishpaste wrote:
  Is too  soon from the release to expect some Backports for Lenny ? I'm not
  in a particular rush, just wondering

Bless the backports for wicd.

http://www.backports.org/dokuwiki/doku.php

- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoey1MACgkQ6baBhW8Czrir2ACcC5HD1/mV4hjuyvrnLwaSgiIM
jWIAnigp7+6mG56bq545BUhOHS0ZWr7Q
=1sg6
-END PGP SIGNATURE-


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



Re: iceweasel preferences help needed

2009-05-28 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, May 28, 2009 at 02:34:16PM -0400, H.S. wrote:
 
 If you are having too large fonts in multiple applications, perhaps it
 is your fonts settings in Appearance preferences that is causing this.
 
 In Iceweasel, you can change fonts from Appearance preference (I think
 you have to click on Advanced) by setting a desired point size for the
 fonts for default encoding.
 
 In gnome terminal, I think you need to set the font in the profile for
 the terminal.
 
 But I would recommend first checking Gnome's Appearance in Preferences
 and making sure the font settings there are okay. I would try changing
 stuff there before doing anything else.

+1 
Happened to me on etch when I thought I was getting clevar with the
appearance setting 'gnome wide'

Since my clean move to Lenny I've left everything alone. 

- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoe4EYACgkQ6baBhW8CzrjvrwCfQp2xvx/FF1DbaNe48iF6jHHk
6oEAnRmRWBrx5JSS14IJZDtGswfF/uDJ
=BWQB
-END PGP SIGNATURE-


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



Re: Rhow to mount a usb disk automatic?

2009-05-28 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 29, 2009 at 02:52:00AM +0800, Yi Zhao wrote:
 hi, all, when I instert my usb disk into my computer, I can see the
 icon of the new volume in the desktop automatic, but, I will get a
 error message said invalid mount option when attempting to mount the
 volume samsum, when I double click this icon to open it, I got
 permission denied, how to fix this two problem??


Lenny/Squeeze/Sid?

Who has ownership of the file/disk?  
ls -l /mount/point # after you have inserted the disk

Do you have any previous entries in /etc/fstab attempting to handle
mounting /dev/sdb* 's?

- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoe4zgACgkQ6baBhW8CzrhksgCfWzcsKe3fdr4ALrTEJ1KopsZV
k3MAnA2rYiHKAMKbrmdwhX0sxbKPBBag
=N+Su
-END PGP SIGNATURE-


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



Re: Debian Linux

2009-05-26 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, May 26, 2009 at 12:05:51PM +0100, Martyn Dowling wrote:
 
 Please could you let me know if Debian Linix is compatible with a HP Proliant 
 DL360 G5 server?
 


I can resist.
http://tinyurl.com/ort4zu

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkob0sMACgkQ6baBhW8CzriprQCfY2QRCKKxDgmhArdmmCGgAaNv
I7MAnj/7L905DqczFmiBt0hkHou/KOiR
=lif3
-END PGP SIGNATURE-


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



Re: [Fwd: Re: Correct sudoers file configuration]

2009-05-26 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, May 26, 2009 at 08:51:20PM +0200, steef wrote:

 You need to use the command visudo to edit the sudo configuration file
 (/etc/sudoers).


 Tom

 why??  why not  (to start with)  # nano /etc/sudoers  ??

 regards,

 steef

VISUDO(8)

visudo edits the sudoers file in a safe fashion, analogous to vipw(8).
visudo locks the sudoers file against multiple simultaneous edits,
provides basic sanity checks, and checks for parse errors. If the sudoers
file is currently being edited you will receive a message to try again
later.



- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkocPAMACgkQ6baBhW8CzriX2wCdGBeE5gvhygJij8ZxAEvbdGw4
a4YAn2CidCqh1BVIs/0GjBV/wcUPiGYo
=4Rcy
-END PGP SIGNATURE-


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



Re: rant: return receipts

2009-05-25 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, May 25, 2009 at 02:44:12PM -0400, Tony Baldwin wrote:
 I don't know, but I don't think return receipts are appropriate on this  
 list.
 They're very annoying.

They are pretty easy to avoid.  I see your using IceDove/Thunderbird which
can be configured to ignore them. 

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoa64UACgkQ6baBhW8CzrhlqgCggQdcFdxgd4/BsXRDOLtRwFbF
kZcAnAl8nHRzCRJE/Bb6LruiPfcCV7ER
=2y8g
-END PGP SIGNATURE-


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



Re: chrony discarding servers

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 01:20:56AM -0400, Celejar wrote:
 
 Just to go through the obvious, since you haven't told us how you're
 connecting to the internet: *are* you connecting through ppp?  If so,
 can you provide the relevant syslog from the period right before,
 during and after you bring up the connection?  The log should give us a
 clue as to why the sources aren't going online.
 
 Celejar

Not exactly knowing what ppp is I googled and I am not.  So I believe
if-up/if-down is responsible?  Looking in both of those files there is not
a corresponding file to chrony.  Would I be able to copy
/etc/ppp/ip-up.d/chrony to /etc/if-up.d/chrony? (and ip-down.d) I don't 
know much about scripts, the only line that stands out to me that may not 
work as expected is touch /var/run/chrony-ppp-up

# cat /etc/ppp/ip-up.d/chrony 
#!/bin/sh
# This script tells chronyd that the connection is up so that it can
# contact the server.  John Hasler jhas...@debian.org 1998-2003
# Any possessor of a copy of this program may treat it as if it
# were in the public domain.  I waive all rights.

/bin/pidof chronyd  /dev/null || exit 0
KEY=$(awk '$1 ~ /^commandkey$/ { print $2; exit}' /etc/chrony/chrony.conf)
PASSWORD=`awk '$1 ~ /^'$KEY'$/ {print $2; exit}' /etc/chrony/chrony.keys`
/usr/bin/chronyc  EOF
password $PASSWORD
online
burst 5/10
quit
EOF
touch /var/run/chrony-ppp-up
exit 0

# cat /etc/ppp/ip-down.d/chrony 
#!/bin/sh
# This script tells chronyd that the connection is down
# so that it won't try to contact the server. 
# John Hasler jhas...@debian.org  1998-2003
# Any possessor of a copy of this program may treat it as if it
# were in the public domain.  I waive all rights.

/bin/pidof chronyd  /dev/null || exit 0
# Don't mark the connection offline unless we know ppp brought it up.
test -e /var/run/chrony-ppp-up || exit 0
KEY=$(awk '$1 ~ /^commandkey$/ { print $2; exit}' /etc/chrony/chrony.conf)
PASSWORD=`awk '$1 ~ /^'$KEY'$/ {print $2; exit}' /etc/chrony/chrony.keys`
/usr/bin/chronyc  EOF
password $PASSWORD
offline
EOF
rm -f /var/run/chrony-ppp-up
exit 0

- From recent restart of chrony

# grep chrony /var/log/syslog
May 22 01:34:48 T61 chronyd[6638]: chronyd exiting on signal
May 22 01:34:49 T61 chronyd[5673]: chronyd version 1.23 starting
May 22 01:34:49 T61 chronyd[5673]: Initial txc.tick=1 txc.freq=-21449
(-0.32728577) txc.offset=0 = hz=100 shift_hz=7
May 22 01:34:49 T61 chronyd[5673]: set_config_hz=0 hz=100 shift_hz=7
basic_freq_scale=1.2800 nominal_tick=1 slew_delta_tick=833
max_tick_bias=1000
May 22 01:34:49 T61 chronyd[5673]: Linux kernel major=2 minor=6 patch=26
May 22 01:34:49 T61 chronyd[5673]: calculated_freq_scale=0.99902439
freq_scale=0.99902439
May 22 01:34:50 T61 chronyd[5673]: Source 216.45.57.38 online
May 22 01:34:50 T61 chronyd[5673]: Source 216.14.97.75 online
May 22 01:34:50 T61 chronyd[5673]: Selected source 216.45.57.38
May 22 01:34:52 T61 chronyd[5673]: Selected source 216.14.97.75


So what I'm starting to understand is by default install chrony assumes
limited connectivity with a PPP connection (e.g. dialup) with the correct
scripts to handle such circumstances.  However, because I do not use PPP
but still have a somewhat limited connection depending on my location to a
wired or wireless access point chrony isn't aware (yet) if I'm connected
or not.  Which still leaves me somewhat confused as to what is telling
chrony there is a connection when I restart the service, as the servers are
listed to start in an offline state until chrony is told I am now
connected via /etc/ppp/ip-up.d/chrony.  If that mouthful makes sense. 
- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWP6EACgkQ6baBhW8CzriuwACeM9DW4t8jYMskITiJx56KuWM+
xZkAnAiiTnM+OX+kbtxvdYKEI1LyNh4v
=7vVY
-END PGP SIGNATURE-


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



Re: new to list, new to debian, new to linux

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 03:03:23AM -0500, dwain wrote:
 hello all.  i just installed debian tonight next to win xp.  they seem to
 play well together.  i was trying to setup the bug report and found that i
 can't sudo into root.  i can get into the synaptic package manager with the
 root password and this has me a bit confused why i can't login as root in
 the terminal with sudo.  is there another command that i can try to do this?
 
 also i would like to update my system.  would i: apt-get update and then:
 apt-get install to do this?
 
 any help would be appreciated, but please keep your responses simple as i am
 trying to learn a new os and am in the process of migrating away from
 windows.
 
 cheers,
 dwain
 
 -- 
 Fear of the devil is one way of doubting God.   - Kahlil Gibran

What error msg are you getting?  Have you added yourself to the sudoers
file? 

Are you able to simply type 'su' and then be prompted for the root password?

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWXg8ACgkQ6baBhW8CzrgufwCcD3slnAXPRn14T7FmSw+ySSfV
OvQAnjVDPi+AWDIO2Z2zFeLk2EcYKTmg
=qKTU
-END PGP SIGNATURE-


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



Re: Meaning of score when looking for package solutions

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 11:06:53AM +0300, Jason Filippou wrote:
 Hello,
 
 Being new to Debian and running Squeeze I'm curious as to what the Score is
 x line's supposed to mean when examining solutions to solve package
 dependences through aptitude. I noticed that the value of x may differ
 greatly from one solution to another.
 
 I appreciate any input,
 
 Jason

Daniel Burrows the maintainer of aptitude is a member of this list.
Perhaps he might find some time to respond.  I did look into the same
question a while back.  I believe what it comes down to is the lower the
score of the solution the better.  Although I could be wrong about that.
I took just a minute to see if I could remember where exactly I read about
it.  I'm fairly sure it was the aptitude user's manual written by Daniel. 
http://algebraicthunk.net/~dburrows/projects/aptitude/doc/en/index.html

Hope this helps.  And if you do find the answer, please come back and let
us all know. 


- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWbcoACgkQ6baBhW8CzrhvvgCfcTN83B+1tLTwwBffDZI5g8/m
pzcAoICzSaV1cCYiCxBxmf10yQtWhE5+
=ZnOm
-END PGP SIGNATURE-


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



Re: install programs

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 05:48:03AM -0400, jerin wrote:
 hai! i have just installed a debian operating system. i have many programs
 in cd for linux. but i cant install them. in XP by wizard it is easy
 installing. but double clicking files just open it.
 
 -- 
 ***jeringeok***

What kind of cd?  One of the debian cd's or one you have a lot of source
code/packages/binaries etc?

The easiest and best way to install software in Debian is through one of
the package managers e.g. aptitude, synaptic, or apt.  

See 2.2 The Debian package management system of the Debian reference
manual. 

http://www.debian.org/doc/manuals/reference/ch-system.en.html#s-pkg-basics

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWeZ0ACgkQ6baBhW8Czrjb+wCeKwjhAP5GPlaETs3eftdJ4Aud
EeUAnj2/8Gli7GG2ZXdzzyFZRLX4oeUK
=zlsv
-END PGP SIGNATURE-


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



Re: new to list, new to debian, new to linux

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 06:14:59AM -0400, George wrote:
 You have to install the sudo package to be able to use sudo. 
 
  
 # vim /etc/sudoers  now you can edit the sudoers file and add your username. 
 The new line will look just like the line for root except replace root with 
 your username.

the command 'visudo' should be used to edit the sudoers file according to
the man page. 

visudo edits the sudoers file in a safe fashion, analogous to vipw(8).
visudo locks the sudoers file against multiple simultaneous edits,
provides basic sanity checks, and checks for parse errors. If the sudoers
file is currently being edited you will receive a message to try again
later.

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWfXEACgkQ6baBhW8CzrhsqACfUxX6TZKYaqsyBaru2Ekjk/NR
CQoAn0ll2BWCNXIyfojLWzRZXIu18Xxo
=LWmH
-END PGP SIGNATURE-


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



Re: new to list, new to debian, new to linux

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 08:45:03AM -0400, Bob Parnes wrote:
 On Fri, May 22, 2009 at 06:24:49AM -0400, Daryl Styrk wrote:
  On Fri, May 22, 2009 at 06:14:59AM -0400, George wrote:
   You have to install the sudo package to be able to use sudo. 
   

   # vim /etc/sudoers  now you can edit the sudoers file and add your 
   username. The new line will look just like the line for root except 
   replace root with your username.
  
  the command 'visudo' should be used to edit the sudoers file according to
  the man page. 
  
  visudo edits the sudoers file in a safe fashion, analogous to vipw(8).
  visudo locks the sudoers file against multiple simultaneous edits,
  provides basic sanity checks, and checks for parse errors. If the sudoers
  file is currently being edited you will receive a message to try again
  later.
  
  --
  Daryl Styrk
  Naples, FL USA
  
  
  
  
  -- 
  To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
  with a subject of unsubscribe. Trouble? Contact 
  listmas...@lists.debian.org
  
 Here is my sudoers file, which may help as an example:
 
 
 # sudoers file.
 #
 # This file MUST be edited with the 'visudo' command as root.
 #
 # See the man page for details on how to write a sudoers file.
 #
 
 # Host alias specification
 
 # User alias specification
 
 # Cmnd alias specification
 Cmnd_AliasHALT = /sbin/halt
 Cmnd_AliasREBOOT = /sbin/reboot
 Cmnd_AliasAPT = /usr/bin/apt-get, /usr/bin/aptitude
 Cmnd_AliasDPKG = /usr/bin/dpkg
 Cmnd_AliasMOUNT = /bin/mount, /bin/umount
 Cmnd_AliasKERNEL = /usr/bin/make, /usr/bin/make-kpkg
 
 
 # User privilege specification
 root  ALL=(ALL) ALL
 bpALL= HALT, REBOOT, APT, DPKG, MOUNT, KERNEL
 
 #Defaults logfile=/var/log/sudolog
 Defaults:bp   timestamp_timeout=60
 -
 
 Bob Parnes
 
 

I believe this was meant for the list. 

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWoSAACgkQ6baBhW8CzrjLAACffeP0MBNMVk1bGjtd6j1Fw7ux
26EAn1wEo2BurQ5JXE3YsA0CC7BCRXwz
=Pgk4
-END PGP SIGNATURE-


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



Re: What hardware to use for Debian Firewall/Gateway or server?

2009-05-22 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, May 21, 2009 at 09:31:14PM +0200, Csanyi Pal wrote:
 Hi,
 
 I have at my home a small network:
 firewall/gateway: Pentium II Class PC box with 64 MB RAM, 5,1 GB HDD
 server  : Pentium IV Class PC box with  2 GB RAM, 60 GB HDD
 desktop : Pentium IV Class PC box with  2 GB RAM, 2 * 320 GB HDD
 
 On all these PC boxes run Debian GNU/Linux:
 firewall/gateway: Etch
 Server  : Etch
 desktop : Lenny
 
 The firewall has a buggy hardware and can't to install on it Lenny so
 I decide to buy a new hardware for firewall/gateway.
 
 I think about that that I could to use the server box as a
 firewall/gateway and the new PC box for the server..
 
 What is the recommended new hardware for firewall/gateway or for a
 web, mail, file  printer server at a small home network? 
 
 Any advices will be appreciated!

The OpenRD Client looks pretty cool.. 

Runs the Sheeva 1.2 GHz 512 MB DDR2-800 SDRAM

http://globalscaletechnologies.com/t-openrdcdetails.aspx


- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWuoMACgkQ6baBhW8CzrgWSACeOsT/vY2cXT5JyYe+3tBn5yC3
OakAnRVJ9YIR/KjC5uL4Wz0kLUtQecAW
=eGog
-END PGP SIGNATURE-


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



Re: chrony discarding servers

2009-05-21 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, May 22, 2009 at 12:19:15AM -0400, Celejar wrote:
 [please reply to the list and not to me]
 
 Your chrony.conf has two sources, both set to 'offline'.  What do you
 mean that it's set to always be online?
 

Sorry for the off-list reply.. Meant to hit shift+L here on mutt.. 

I was reading the following 3.2.1 from
http://chrony.sunsite.dk/guide/chrony.html which states

However, the following issues need to be addressed:

   1. Your computer probably doesn't have DNS access whilst offline to
turn the machine names into IP addresses.
   2. Your computer will keep trying to contact the servers to obtain
timestamps, even whilst offline. If you operate a dial-on-demand system,
things are even worse, because the link to the internet will keep getting
established. 

For this reason, it would be better to specify this part of your
configuration file in the following way:

server 1.2.3.4 offline
server 5.6.7.8 offline
server 9.10.11.12 offline

Because numeric IP addresses have been used, the first problem is
overcome. The offline keyword indicates that the servers start in an
offline state, and that they should not be contacted until chronyd
receives notification that the link to the internet is present. 

Which seems logical to me because I use a laptop and not aways around an
AP.  Section 3.2.2 contains the instructions to notify chronyd the system 
is connected via /etc/ppp/ip-up or as it would be on Debian 
/etc/ppp/ip-up/chrony which contains the following. 

#!/bin/sh
# This script tells chronyd that the connection is up so that it can
# contact the server.  John Hasler jhas...@debian.org 1998-2003
# Any possessor of a copy of this program may treat it as if it
# were in the public domain.  I waive all rights.

/bin/pidof chronyd  /dev/null || exit 0
KEY=$(awk '$1 ~ /^commandkey$/ { print $2; exit}' /etc/chrony/chrony.conf)
PASSWORD=`awk '$1 ~ /^'$KEY'$/ {print $2; exit}' /etc/chrony/chrony.keys`
/usr/bin/chronyc  EOF
password $PASSWORD
online
burst 5/10
quit
EOF
touch /var/run/chrony-ppp-up
exit 0



So it would seem with a default installation everything should work as
expected.  





- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoWLfgACgkQ6baBhW8Czrg4UgCfZiYmDZYfNT5jEQze/hN5WTpA
ghYAn0eOq94zyMZyN6VsvgEFGChH4H98
=rJzQ
-END PGP SIGNATURE-


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



[OT] Wireless Router WGR614v9 issues

2009-05-20 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


I'm having some issues with a new router.  For normal browsing it seems
to perform fine.  However when I start to download large files speeds drop
off from around over 1400KB/s down to 120KB/s.  I haven't put a stopwatch
to it but it seems to be around the same amount of time.  A simple restart
of the router and all is fine.  This most often happens when getting
binaries from newsgroups.  Either that has something to do with it or just
normally where the large files come from I'm not sure. Remembering reading 
something a while back about a lot of connections being the sinking point 
for most routers I cut those back to 10 from 20 with the same results.  

I thought that I was being throttled by the ISP, but then  tried
half a dozen times wired with large files and everything has worked as
expected with speeds staying up around 1000K. I even noticed when moving 
large files across the wlan via scp or rsycn the speeds are a lot slower 
than I had expected.  Starting around 2M/s dropping off to around 700K or 
less.  

I know the router isn't exactly the best of the bunch, it was the cheapest
on the shelf.  I've upgraded the firmware to the latest and greatest with
no increase in performance.  I'm at a bit of a loss of what to do next
short of replacing the router.  I read a bit about the DD-WRT project but
it seems my model (WGR614v9) is not yet supported with a work in progress
tag.

And what exactly is going on?  Some packet collision or something?  I'm no
networking guru so I don't know all the terms I should be searching for.

Running tests at speakeasy.net/speed test shows me the following.. 

- -Wireless- (after the first 'crash' downloading) 
Download Speed: 831 kbps (103.9 KB/sec transfer rate)
Upload Speed: 1941 kbps (242.6 KB/sec transfer rate)

- -Wireless- (after a router restart)
Download Speed: 13376 kbps (1672 KB/sec transfer rate)
Upload Speed: 2773 kbps (346.6 KB/sec transfer rate)

- -Wired-
Download Speed: 14676 kbps (1834.5 KB/sec transfer rate)
Upload Speed: 2799 kbps (349.9 KB/sec transfer rate)

So as you can see I would really like to get to the bottom of this. 

Any ideas on where to go from here or at least some things I should be
searching for and/or reading about would be appreciated. 

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoT8YEACgkQ6baBhW8Czri6XACdGDJKngxcHlPXTdVQHTKNFt8c
p1kAmgI6JCrJJa7B5MoM4X0Up929AcXi
=LPRl
-END PGP SIGNATURE-


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



Re: [OT] Wireless Router WGR614v9 issues

2009-05-20 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, May 20, 2009 at 11:51:30AM -0400, Nick Lidakis wrote:
 
 You didn't mention what kind of internet service you have. Cable, DSL?
 I ask because I remember having issues with a Netgear router when I
 got my first DSL line in 2001. The default MTU of 1500 cuased some
 issues. Setting it to 1492 seemed to fix downloads. Though the router 
 would still freeze and  need a reboot once a every couple of days.

Currently cable with comcast. 

 And after having to reboot constantly for weeks, I purchashed
 a PC Engines Wrap board, loaded up some M0n0wall firewall software and
 never looked back. 

If I'm looking at the correct site it looks to be discontinued and not a
wireless device.  http://www.pcengines.ch/wrap.htm

 Have you tried posting your question over at the netgear tech support
 forum? Seems active.

I'll look into that.  To be honest I completely forgot it was around. 

- --
Daryl Styrk
Naples FL, USA



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoUPqwACgkQ6baBhW8CzrgmFQCdEVIch9tulprXs3/PnMTST9Jv
q6gAnjUUU2UtmLQhuOzeMnGDocd1ypXK
=spxr
-END PGP SIGNATURE-


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



Re: using debian dvd iso image with apt

2009-05-20 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, May 20, 2009 at 06:47:54PM +0100, Giancarlo Pegoraro wrote:
  My question is: can I fool apt in order to avoid burning dvd-rw each
  week?
 I know jigdo. Jigdo take from a normal mirror all package and build
 a .iso format. In second round jigdo read a your dvd-rw and take from
 internet the new version package only and rebuild a new .iso :-)

+1 for jigdo.  http://www.debian.org/CD/jigdo-cd/

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoUNnMACgkQ6baBhW8CzriH2ACaA2i6GF3jdA00WKKRgBgtxhX9
m1AAnRaoUIfRzCKlJsnXF+4k5uznrUFR
=V+de
-END PGP SIGNATURE-


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



Unidentified subject!

2009-05-20 Thread Daryl Styrk


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



chrony discarding servers

2009-05-20 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


I seem to keep having a problem with chrony dropping back to 127.127.1.1..

I saw in chrony.conf 
# Note that if Chrony tries to go online and dns lookup of the servers
# fails they will be discarded.  Thus under some circumstances it is 
# better to use IP numbers than host names.

So I commented out the default servers and went with some IP's. 

server 216.45.57.38 offline minpoll 8
server 216.14.97.75 offline minpoll 8

#server 0.debian.pool.ntp.org offline minpoll 8
#server 1.debian.pool.ntp.org offline minpoll 8
#server 2.debian.pool.ntp.org offline minpoll 8
#server 3.debian.pool.ntp.org offline minpoll 8

Which I still end up with this everyday. 

chronyc tracking
Reference ID: 127.127.1.1 (127.127.1.1)
Stratum : 10
Ref time (UTC)  : Wed May 20 20:41:42 2009
System time : 0.00 seconds fast of NTP time
Frequency   : 0.629 ppm fast
Residual freq   : 0.000 ppm
Skew: 0.000 ppm
Root delay  : 0.00 seconds
Root dispersion : 0.00 seconds

However if I restart chrony it will come back online as usual.

# /etc/init.d/chrony restart
Restarting time daemon: chronyd is running and online.

chronyc tracking
Reference ID: 216.14.97.75 (ntp.your.org)
Stratum : 2
Ref time (UTC)  : Wed May 20 20:42:47 2009
System time : 0.009365 seconds slow of NTP time
Frequency   : 0.629 ppm fast
Residual freq   : -1625.707 ppm
Skew: 0.174 ppm
Root delay  : 0.077957 seconds
Root dispersion : 0.029449 seconds

What else am I missing here?

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoUbikACgkQ6baBhW8CzrhmEwCfeIlpNRL9PDQC9TOrN83/0LxM
PEMAnj/7H1T5og7Pb0SDR5Ys6c72l2ua
=cco2
-END PGP SIGNATURE-


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



Re: switch to mutt, can't get my normal dose of spam

2009-05-19 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, May 19, 2009 at 08:45:24PM -0400, Nick Lidakis wrote:
 
 Umm, IMAP? I should still try this even after checking verizon's
 webmail?
 

I see no need.  If the webmail is not showing them, they don't exist. 

- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEUEARECAAYFAkoTWjAACgkQ6baBhW8CzrhblwCY2TotwS+h1rVCGH+tgdLvMEa4
LQCdFtL7mQBb+BGiOSc8YbtDFI0semc=
=SE2e
-END PGP SIGNATURE-


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



Re: Hardware diagnostics

2009-05-19 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, May 19, 2009 at 11:37:51PM -0400, Scott Gifford wrote:
 Hello,
 
 I have a Debian Etch installation that's beoming increasingly
 unstable.  It periodically freezes up, with nothing in the logs until
 it is rebooted.  I suspect a hardware problem, and would like to
 identify it or rule it out before doing an upgrade to Lenny.
 
 Can anybody recommend a good hardware diagnostic or burn-in program?
 I have used memtest86 and will try that, but ideally I'd like to
 stress test more of the system than just the memory.  Something that
 can run on Debian Etch while the machine is live is ideal, or
 something that can be run from a boot CD.  Free is preferred (of
 course), but any suggestions are welcome.
 
 Also, if anybody has a suggestion of what might fix an Etch system
 that's freezing up periodically with nothing in the logs, those
 suggestions are welcome too.  :-)
 
 Thanks!
 
 Scott.

A friend and I were just discussing this earlier tonight. You could try 
any live-CD of your choice for a memory test.  

I found a thread for a hard drive test http://tinyurl.com/o3vmy7

while `true`; do mke2fs -c -c device; done  I believe that will 
perform a slower read/write test not sure if you'll be able to keep the data. 

And you can heat things up a bit with... md5sum /dev/zero which should get
things pretty hot pretty quickly, so keep an eye on your temps.

Aside from that there are a few other threads I found searching over the
archives.  http://tinyurl.com/ojnsce


- --
Daryl Styrk
Naples, FL USA


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoTjnQACgkQ6baBhW8Czrg8wQCfb9ealwU+FWalFmuRojefj1rA
WkkAniKJ1eWTAx6jEcXQ7MvjFYmmD8U8
=qPm5
-END PGP SIGNATURE-


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



Re: Why is the kernel in testing so far behind what's current?

2009-05-14 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, May 14, 2009 at 06:15:42AM -0500, Nate Bargmann wrote:
 
 I dumped Network Manager and went with WiCD.  No regrets for doing so.
 
 - Nate 

Same here much better. 

- --
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoMAPMACgkQ6baBhW8CzriHMwCeLrdC3AvslN26CRp2foxSTVFX
OysAn0LB6BDT9xc/B4F/oQ2olibTilH8
=1UDP
-END PGP SIGNATURE-


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



Re: .img_bestanden

2009-05-12 Thread Daryl Styrk
On Tue, May 12, 2009 at 09:53:31AM +0200, steef wrote:
 thank you daryl:

 but now i am confused. i downloaded poweriso-1.3.tar.gz, unzipped it  
 with ark, and it opens like a windows-executive. what did i do wrong??

 steef

No if I remember correctly that is correct.. put it in ~/bin and 
run 'poweriso -?' for a list of commands. 



-- 
Daryl Styrk
Naples, FL USA


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



Re: .img_bestanden

2009-05-12 Thread Daryl Styrk
On Tue, May 12, 2009 at 03:49:41PM +0200, steef wrote:
 thanks daryl, i copied the file into /usr/bin and now it works.
 thanks for your patience. i should have known this myself

 kr.,

 steef

No problem.  Let us know if it will accomplish what your after. 

-- 
Daryl Styrk
Naples, FL USA


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



Re: switch to mutt, can't get my normal dose of spam

2009-05-12 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, May 12, 2009 at 04:50:23PM -0400, Nick Lidakis wrote:
 After a quite a bit of reading about this mutt mua people are so fond
 of, I had the nerve to try to put down Mozilla's Thunderbird down for
 a while and take the mutt for a walk. 
 
 Using -among other online sources- the debian mutt wiki as a guide, 
 I get mutt installed, configure a decent (for a rookie) .muttrc, and 
 replace exim with the simple ssmtp. I use mutt's internal POP
 facilties to get mail from my verizon mail account. I haven't
 configured procmail or spamassassin yet.
 
 A feeks weeks go by and I notice something strange. I'm not getting my
 healthy dose of spam like I used to get when using Tbird. The junk
 folder would get filled with a dozen or more a day. Now, nothing. The
 only couple of spam messages that I get are the one's from this list.
 I am getting mail from all my other legit sources.
 
 Did I do something wrong? Did I horribly misconfigure something?
 
 Debian Sid with latest updates here.

You should probably ask this at mutt-us...@mutt.org .  Was the spam
finding its way to your INBOX?  Were the messages flagged as spam with
IceDove?  
- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoJ80kACgkQ6baBhW8CzrhSjwCdGmK5S1IWo13/M+gl+GEcd/J4
2RcAnjdSYk3wgX/ZkQSavV//la986uQ8
=X5J2
-END PGP SIGNATURE-


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



Re: switch to mutt, can't get my normal dose of spam

2009-05-12 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, May 12, 2009 at 06:19:29PM -0400, Nick Lidakis wrote:
  
 I actually thought it was more appropriate to ask the Debian list as
 Mutt is just a MUA relying (as I understand it) on external tools to
 prcocess mail. When I asked if I horribly misconfigured something it
 was in reference to my Debian configuration.
 
 The messages were flagged by IceDove automatically and sent to the
 junk folder until I manually deleted them. The occasional spam would
 make it past IceDoves junk rules.

Actually unless you've configured fetchmail or the like mutt handles
everything by itself.  Even SMTP if you let it.  

Have you looked at the webmail interface for your account to see if in
fact the spam is still coming?  

- -- 
Daryl Styrk
Naples, FL USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoJ+5kACgkQ6baBhW8CzriBAQCfZbnuAYDlV0+q/ZCw/gN4elnn
f4gAnjz9qy8AeGkgbUfepFwj96/msPFA
=SbTl
-END PGP SIGNATURE-


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



Re: Unexplained changes in Gnome functionality

2009-05-11 Thread Daryl Styrk
On Mon, May 11, 2009 at 10:04:47AM +0100, Andrew G wrote:
 
 4) Finally, icons from removable media are not being placed on my desktop
 like they used to.  This may well have something to do with UDEV, but beyond
 that I haven't a clue on what's up nor - even more critically - what I can
 do about it.


Just a guess here, but have a look at SystemPreferencesRemovable Drives
and Media.  I have the first 3 boxes checked. 

* Mount Removable drives when hot-plugged
* Mount removable media when inserted
* Browse removable media when inserted

And everything works fine here (lenny)

As someone else had mentioned there was some discussion about about this
same problem a month or two ago here on this list. 


-- 
Daryl Styrk
Naples, FL USA


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



Re: Firefox and testing

2009-05-09 Thread Daryl Styrk
On Sat, May 09, 2009 at 02:48:52PM -0400, Frank McCormick wrote:
Should have Goggled before I posted :)
 
Same hint suggests uninstalling or changing config of
 network-manager if it doesn't work.

+1 on uninstalling network-manager.  Yesterday I replaced it with wicd
from lenny-backports for an unrelated issue freezing my T61.


-- 
Daryl Styrk
Naples, FL USA


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



Re: Confused about netinst

2009-05-09 Thread Daryl Styrk
On Sat, May 09, 2009 at 10:45:30PM +0300, Andrei Popescu wrote:
 
 Could you please post the link?
 
 From my experience the installer can detect wifi cards (it will need 
 firmware for many of them), but can't use WPA/WPA2 to connect (only 
 WEP). Hope I'm not mistaken, it's been a while.
 
 Regards,
 Andrei

That has been my experience with the installer and a Intel Corporation
PRO/Wireless 4965 AG or AGN.  You will run into a section asking you if
you'd like to load firmware from another device such as a USB disk.
However the one time I did try to load the firmware it failed.  That was a
while ago and could very easily been user error.  I asked about WPA/WPA2
support coming and was told it is being worked on and should be
incorporated in the Squeeze installer.  

-- 
Daryl Styrk
Naples, FL USA


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



Re: .img_bestanden

2009-05-09 Thread Daryl Styrk
On Thu, May 07, 2009 at 10:55:09AM +0200, steef wrote:
 hi folks,

 dows anybody know how to convert a .img_file into an .iso_file under  
 stable? can a package like nrg2iso do the job? found some  
 ubuntu-packages, like ccd2iso, but ubuntu is not debian.

 thank you,

 steef

poweriso might work out for you.  I know it can convert .daa to .iso.


http://www.poweriso.com/poweriso-1.3.tar.gz

-- 
Daryl Styrk
Naples, FL USA


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



Re: Confused about netinst

2009-05-09 Thread Daryl Styrk
On Sat, May 09, 2009 at 09:02:59PM +0100, Muzer wrote:
 Daryl Styrk wrote:
 On Sat, May 09, 2009 at 10:45:30PM +0300, Andrei Popescu wrote:
   

 That has been my experience with the installer and a Intel Corporation
 PRO/Wireless 4965 AG or AGN.  You will run into a section asking you if
 you'd like to load firmware from another device such as a USB disk.
 However the one time I did try to load the firmware it failed.  That was a
 while ago and could very easily been user error.  I asked about WPA/WPA2
 support coming and was told it is being worked on and should be
 incorporated in the Squeeze installer.  

   
 I'm not interested in WPA{,2} support. The output from lspci is: 05:01.0  
 Network controller: RaLink RT2600 802.11 MIMO

 I think the module it uses is rt2x00pci. Not sure what firmware, if  
 any, it uses; how can I check on my current installation?

 Will this work out of the box with the network install?

I'm not exactly sure for you.  The installer did detect the firmware
required and asked if I'd like to load it from USB.  I'd say throw in the
NetInstallCD and see.. Come back with what it asks for and then we can
track it down.  

$ locate firmware |grep ucode
/lib/firmware/iwlwifi-3945-1.ucode
/lib/firmware/iwlwifi-4965-1.ucode
/lib/firmware/iwlwifi-4965-2.ucode

If I remember correctly the installer was asking for the 4965 ucode.

-- 
Daryl Styrk
Naples, FL USA


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



Re: Is Network-Manager freezing my system?

2009-05-08 Thread Daryl Styrk
On Fri, May 08, 2009 at 11:53:58AM -0400, Patrick Wiseman wrote:
 Hi:
 
 I have a Lenovo T61p running an amd64 testing system.  Yesterday, my
 system froze twice, i.e. became completely unresponsive, the caps lock
 LED flashing, as it does on this machine when it's frozen.  (A quick
 Google search suggests that's a sign of kernel panic.)  The only
 remedy is to hold down the power button until it powers down.  The
 reason I suspect Network-Manager is twofold: (1) the freeze only
 happened when I had the machine hard-wired to my network, and (2)
 syslog showed lots of wlan0 activity - trying to connect, being denied
 a DHCP address - just before the freeze occurs.  Has anyone else had a
 similar experience?  I don't want to file a bug report against
 Network-Manager unless I'm pretty sure it's the culprit.
 
 Patrick
 
 


Also on a T61 and I have not experienced this, however instead of holding
down the power button you should try to use the SysRq+b to bring the
system down safely.  There are a couple other threads that have some more
options.  One was just discusses not that long ago.. 

http://lists.debian.org/debian-user/2007/12/msg00835.html

Looks like I should be syncing 's' before 'b' for reboot.. Good to know. 

-- 
Daryl Styrk
Naples, FL USA


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



Re: Is Network-Manager freezing my system?

2009-05-08 Thread Daryl Styrk
On Fri, May 08, 2009 at 01:17:25PM -0400, Patrick Wiseman wrote:
 
 Thanks for the info - my system comes up cleanly after I power down,
 though, and I'm pretty sure that the keyboard is completely
 unresponsive when it freezes like this.  I'll see if it reproduces
 later (when I have access to my wired network) and try your
 suggestion.
 
 Patrick

Funny you brought this up and I even said I had no problems.. 

WELL I was able to reproduce the exact same results here.. I was on
the wireless network, plugged in to the wired network. As it was
attempting to get an address ( 2 balls with spinning light) I right
clicked to disable networking as wireless networking was already grayed
out, thats when it froze.  I was not able to SysRq+b to get it to come
back and had to hard power down as well.. 

I spent about 10 minutes looking over the logs for anything useful but I
couldn't come up with anything. 

Suppose it's bug worthy but I would like to file a report on the proper
package.  

Anyone else?

The interfaces in question here are although I'm not sure how much it
matters at this point.

00:19.0 Ethernet controller: Intel Corporation 82566MM Gigabit Network
Connection (rev 03)

03:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN
[Kedron] Network Connection (rev 61)

--
Daryl Styrk
Naples, FL USA


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



Re: Is Network-Manager freezing my system?

2009-05-08 Thread Daryl Styrk
On Fri, May 08, 2009 at 03:29:00PM -0500, gn643202 wrote:

I have had the same problem.
Searched Synaptic but could not find the WICD package in Lenny.

 -- 
 Jerry Perkins


Looks to be in backports.
http://tinyurl.com/pp72ne

I don't really have a serious need for wicd here.. I rarely ever use a
wired connection.  

-- 
Daryl Styrk
Naples, FL USA


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



Re: Is Network-Manager freezing my system?

2009-05-08 Thread Daryl Styrk
On Fri, May 08, 2009 at 07:54:45PM -0400, Patrick Wiseman wrote:
 
 Done.
 
 Patrick
 
 

I should have added I filed #527842 earlier today. 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527842

-- 
Daryl Styrk
Naples, FL USA


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



Re: Is Network-Manager freezing my system?

2009-05-08 Thread Daryl Styrk
On Fri, May 08, 2009 at 03:29:00PM -0500, gn643202 wrote:

I have had the same problem.
Searched Synaptic but could not find the WICD package in Lenny.



I went ahead and installed wicd from backports.  I've tested the
connection swapping and it will request and receive an address
automatically (DHCP here) no problem so far.  Here is how I did it.  

Add this entry to your /etc/apt/sources.list 

deb http://www.backports.org/debian lenny-backports main contrib
non-free

then get the key to verify the packages.
# apt-get install debian-backports-keyring 

# aptitude update

To install:
# aptitude -t lenny-backports install wicd

To keep it automatically updated add/create /etc/apt/preferences with this

Package: *
Pin: release a=lenny-backports
Pin-Priority: 200

Some other options can be found here.
http://www.backports.org/dokuwiki/doku.php?id=instructions


Hope this helps out.

-- 
Daryl Styrk
Naples, FL USA


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



Re: fail to send an email

2009-05-05 Thread Daryl Styrk
On Tue, May 05, 2009 at 09:55:46PM +0300, Andrei Popescu wrote:
 On Tue,05.May.09, 19:24:37, abdelkader belahcene wrote:
  
  The message to local correspondant is delivered, while the remote one is not
  .  I have the standard installation of lenny,  with exim4 running??
  Do I need to stop exim4 or to configure it ?
 

I followed this..  Works fine here.. 
http://wiki.debian.org/GmailAndExim4

-- 
Daryl Styrk
Naples, FL USA


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



Re: stopwatch/worktime program?

2009-05-05 Thread Daryl Styrk
On Tue, May 05, 2009 at 05:49:59PM -0400, Jan Muszynski wrote:


 aptitude install hamster-applet
 
 Description: time tracking applet for GNOME
  Project Hamster helps you to keep track of how much time you spend on
 various activities during the day.  Whenever you move from one task to
 another, you change your current activity in the GNOME applet.
 
  It can present graphical statistics of how long you have spent on each
 task, and may be useful for project management or keeping employee
 timesheets.
 
 http://live.gnome.org/ProjectHamster
 
 


That was what I was thinking about but I couldn't remember the name of the
package.
-- 
Daryl Styrk
Naples, FL USA


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



SheevaPlug

2009-05-04 Thread Daryl Styrk
Initially was highly interested in the NSLU2 [1] as a replacement for a 
laptop I have sitting around running basically as an extremely over 
powered file/backup server. I am starting to become very interested in 
the SheevaPlug [2].  Although not as documented as the slug, I did find 
some work in progress for a full Debian port. [3] I really wished they 
could have figured out some sort of onboard wireless solution.  The 
entire unit looks slightly larger laptop cards. Maybe it was a cost 
saving measure or feature not exactly sure.  But needing to also buy a 
bridge to hide the thing in a closet isn't exactly optimum.  I suppose it 
could live near the already crowded modem/router/phone etc..  But one can 
still wish. Wikipedia says that currently Ubuntu's 9.04 ARM build is running 
the 
shipped unit. [4] 

I'm looking for some input from the list.  Does anyone have one running 
Debian?  How's it working out for you? Would you consider the SheevaPlug 
over the discontinued slug?  How do you go about hooking multiple drives 
into the unit as I've read about with only 1 usb port?  I'm sure there 
are many more that might come up as(if) the discussion moves along. 
  

[1]
http://www.cyrius.com/debian/nslu2/
[2]
http://www.marvell.com/products/embedded_processors/developer/kirkwood/
sheevaplug.jsp
[3]
http://www.cyrius.com/journal/debian/kirkwood/sheevaplug/nslu2-killer
[4]
http://en.wikipedia.org/wiki/SheevaPlug

-- 
Daryl Styrk
Naples, FL USA


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



Re: SheevaPlug

2009-05-04 Thread Daryl Styrk
On Mon, May 04, 2009 at 10:22:16PM +0200, Jochen Schulz wrote:
 Daryl Styrk:
  
  I'm looking for some input from the list.  Does anyone have one running 
  Debian?
 
 http://www.cyrius.com/journal/debian/kirkwood/sheevaplug/debian-lenny-tar-ball
 

Now that is new(s)!  Unfortunately I just saw there is a 4 week delay in
shipping as they are getting caught up on back orders.

-- 
Daryl Styrk
Naples, FL USA


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



Re: Using UNRAR (create 1 iso from 19 archives)

2009-05-02 Thread Daryl Styrk
unrar e *part1.rar


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



Re: Kernel failure

2009-04-28 Thread Daryl Styrk
On Tue, Apr 28, 2009 at 10:50:25AM +0800, 明覺 wrote:
 On Tue, Apr 28, 2009 at 9:55 AM, Thamm, Russell
 russell.th...@dsto.defence.gov.au wrote:
  Hi,
 
  I've just installed lenny under VirtualBox as I wanted to try a different
  Linux distribution.
 
  When I logon to a Gnome session, I often get a popup saying:
 
  Your system has had a kernel failure
 
  It most often happens the first time I logon using gnome after a boot.
 I got the same issue, I'm wondering if I should login as root directly.
 

I have had the same problem with a Squeeze install.  I upgraded to sid
which brought in a newer kernel fixing that error.  


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



Re: Desktop Search Engines

2009-04-27 Thread Daryl Styrk
On Mon, Apr 27, 2009 at 12:43:42PM -0400, Rick wrote:
 What would be a good choice, for a desktop search engine,
 since have TB of Music and Video, and GB of .pdf files,
 would like to index all, including metadata...
 
 
 Thanks!
 Rick
 

I used Beagle for a while.  You can customize it a bit for your own needs.. It 
will take a while to index everything.  

$ aptitude show beagle

snip

Description: indexing and search tool for your personal data
 A desktop search util for indexing and searching user's data. At the moment, 
it can index filesystems, Pidgin logs, Evolution mail and data,
 RSS and other. 
 
 Beagle project web is at http://beagle-project.org/
Homepage: http://www.beagle-project.org/

-- 
Daryl Styrk
Naples, FL USA


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



Re: The size by default of the /usr partition is becoming too small

2009-04-27 Thread Daryl Styrk
On Mon, Apr 27, 2009 at 09:54:29PM +, c soize wrote:
 
 Dear sir Hello,
 
 I'm french user of Debian. Excuse my english.
 
 For several years, the size suggested during 
 the installation for the /usr partition has been 5 GigaByte (GB).
 
 However the softwares becomes increasingly large: 
 open office 3.01, Gimp 2.6, pidgin, Xsane, KDE 4.2.2 ,…
 
 The size by default of the /usr partition is becoming too small (5 GB).
 
 I think it is urgent to propose a default size of 10 to 15 GB for the /usr 
 partition. I am not sufficiently expert to make it myself during installation.
 
 5 GB for the partition /usr is out of date.
 
 Thank you for improving Debian every day.
 
 Christophe SOIZE
 
 

If you were to set up LVM volumes during install you would have the ability to 
resize the partitions along the way as you see fit.  
have a look at http://tldp.org/HOWTO/LVM-HOWTO/index.html to get you going. 
-- 
Daryl Styrk
Naples, FL USA


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



Re: Pulseaudio problems--certain parts not playing

2009-04-05 Thread Daryl Styrk

Dr. Jennifer Nussbaum wrote:

Hi, I have Pulseaudio set up on my sid machine, and after following the 
configuratoin examples, things have been working fine.

But recently some parts (i dont know the right word--channel, track, source?) 
stop working and i cant tell why.

When I first boot the machine everything works. But right now, for instance, i 
can play YouTube videos and get sound, but thats it. I get no sound with Totem, 
or Audacious, or even with another web browser.

I dont even know what details to report--i look at the Pulseaudio Manager and 
things look OK, but i dont know what to look for. There are no message in 
/var/log/messages. And i dont know why this starts to happen, its not connected 
to anything like suspend/resume. All i know is that right now i can watch 
YouTube but cant play an mp3.

Where do i go to try to figure this out?

Thanks!

Jen


  





I've heard nothing but bad things about pulse, and it's been suggested 
to disable it.


Few friends who run ubuntu have all disabled it right away..


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




Re: how to trace port openning

2009-04-04 Thread Daryl Styrk



I thought about it too, but I expected something more specialized.
The next question is certainly how to grep it ?


ngrep?


Package: ngrep
State: installed
Automatically installed: no
Version: 1.45.ds2-2
Priority: optional
Section: net
Maintainer: Romain Francoise rfranco...@debian.org
Uncompressed Size: 57.3k
Depends: libc6 (= 2.7-1), libnet1 (= 1.1.2-1), libpcap0.8 (= 0.9.3-1),
 libpcre3 (= 7.4)
Description: grep for network traffic
 ngrep strives to provide most of GNU grep's common features, applying 
them to
 the network layer.  ngrep is a pcap-aware tool that will allow you to 
specify
 extended regular expressions to match against data payloads of 
packets.  It

 currently recognizes TCP, UDP and ICMP across Ethernet, PPP, SLIP and null
 interfaces, and understands bpf filter logic in the same fashion as 
more common

 packet sniffing tools, such as tcpdump and snoop.
Homepage: http://ngrep.sf.net/


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




Re: Installing on a Compact Flash card.

2009-04-03 Thread Daryl Styrk

Thorny wrote:

[...]

So now I am a bit confused. I am not sure what I am doing wrong. Can any
one advice me on what to try next? Should I try to reinstall with a /boot
partition and a / partition? Is there something I need to do for the CF
card?



Did you write a GRUB MBR to the drive, Chris?




I'd have a look at Debian's guide to the eee. Your approach seems 
similar enough.  http://wiki.debian.org/DebianEeePC


I don't have time to read the entire thing over but I saw this.


Now let the installer do its thing until it wants to write the GRUB 
bootloader. Stop now. Do not install the GRUB bootloader in the MBR.


To install the bootloader on your external media you have to give the 
name of the device as the installer sees it during installation.


http://wiki.debian.org/DebianEeePC/HowTo/InstallOnSDcardOrUsbStick


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




Re: Installing Squeeze testing

2009-04-01 Thread Daryl Styrk

Nick Le Mouton wrote:
I'm having some problems installing Squeeze. Every time I run through 
the installer it freezes at 33% on partitioning the disk. I have tried 
it with Etch stable, which works fine (but apt doesn't work once I 
install as it's 2.4 kernel). I've also tried a Lenny testing disk I have 
laying around, but that also freezes at 33%. It may have something to do 
with the 2.6 kernel.


The server I'm trying to install on is a Dell PowerEdge 750. As far as I 
can tell it has a MegaRaid SCSI controller (2x146GB drives in RAID 1).


Does anyone know how I can fix this problem?

Thanks
Nick Le Mouton



Have some patience.. A lot of times my installs seem to hang at 33% only 
to finish just fine.. Probably a documented bug somewhere..


How long have you let the partitioner run?


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




Re: My confusion about lenny and sid

2009-03-26 Thread Daryl Styrk

Kousik Maiti wrote:

Okay.
This is my sources.list
deb http://security.debian.org/ etch/updates main
deb-src http://security.debian.org/ etch/updates main
deb http://ftp.us.debian.org/debian/ stable main non-free contrib

I updated my system 2 days back.



Slight problem there, where the reference of etch is correctly pointing 
to etch, the reference to 'stable' is now lenny, so it's a mixed system 
with old stable and stable.


I would recommend always using the release code names in sources.list to 
avoid problem like this in the future.


Daryl


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




Re: [OT] Cron and day of the week

2009-03-25 Thread Daryl Styrk

T o n g wrote:

Hi,

I know we can put day of the week info as cron schedules, but how can I 
define:


- first Monday of the month
- second Monday of the month
- last Monday of the month

Thanks!



This has some nice examples.

http://www.adminschoice.com/docs/crontab.htm


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




Re: Mouse Jumping around??

2009-03-25 Thread Daryl Styrk
Mine doesn't like the marble table/desk..  Keep a blank sheet of paper 
around or this really old mouse fabric mouse pad.. Speaking of which and 
moving slightly off topic.. Anyone know of a pad that has reference 
material on it?  Maybe Debian commands or perhaps bash?



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




Re: Pocket Hard Drive or Keypen to run Linux

2009-03-24 Thread Daryl Styrk

Dean Chester wrote:

Hi
Im soon to be buying a new key pen/pocket hard drive that will have a
linux distro installed on a partition. What would be the best to go
for as key pens only have a certain life and the keypen will be used
daily. I know i shouldn't run it as a main OS off the keypen yet im
not allowed to install it on the hard drive of my school issued
laptop. I will be looking at either at getting 2 16gb keypens or one
big pocket hard drive. Will also the read and write speed be an issue
aswell?
Thanks in advance
Dean




I have knoppix installed on a 2G thumb drive..  After the initial 
install I had 699MB left for a /home . Cost like what $4 on amazon.com.. 
even replacing once a year is cost effective for me..  I haven't needed 
to yet.  And at the rate they keep coming down in price I could care 
less if I replaced it twice a year.. I can not longer read the brand of 
my current drive so I can't help you there..



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




Re: File Sharing Problem

2009-03-24 Thread Daryl Styrk

Thomas H. George wrote:

I wish to share or move files between two Debian systems on a LAN.  Each
can successfully ping the other using their system names, dragon and
phoenix.

I have gotten lost in the NFS-Root-Client-Mini-HOWTO which seems far
more elaborate than my needs.  From either system I only want to access
the files in the directory /data on the other system.

I have tried to copy the file I need with command on dragon:

dragon:~# spc phoenix:/data/filename /data
ssh: connection to host phoenix port 22: no route to host

Notes: I have edited hosts.allow on both systems to allow each other.
There are no entries in hosts.deny.  I have checked the output of
netstat -pln and find that neither is listening on port 22 so I tried 


dragon:~# spc -P 22 phoenix:/data/filename /data
ssh: connection to host phoenix port 25: no route to host

I would appreciate any comments or suggestions.

Tom




Tom,
You need top open port 22 on the destination machine and make sure your 
have openssh-server installed on the destination as well.


I use shorewall and have the following rule to allow ssh on 22...

#ACTION SOURCE  DESTPROTO   DESTSOURCE  
ACCEPT   all F$  tcp 22


Daryl


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




Re: libglib1.2ldbl

2009-03-24 Thread Daryl Styrk

André Moreira wrote:

Hello,

some front matter ;)

I'm having a hard time installing lazarus on a debian machine with kernel
2.6.18-5-686.

I have a dependency issue with libglib1.2ldbl and I can't find it anywhere
in my repositories with apt-cache.

Can anyone point me to the right place?

Cheers





$ aptitude show libglib1.2ldbl
Package: libglib1.2ldbl
State: not installed
Version: 1.2.10-19
Priority: optional
Section: oldlibs
Maintainer: Daniel Baumann dan...@debian.org
Uncompressed Size: 274k
Depends: libc6 (= 2.5-5)
Conflicts: libglib1.2
Replaces: libglib1.2
Description: The GLib library of C routines
 GLib is a library containing many useful C routines for things such as 
trees,
 hashes, and lists. GLib was previously distributed with the GTK+ 
toolkit, but

 has been split off as of version 1.1.0.

http://packages.debian.org/search?keywords=libglib1.2ldblsearchon=namessuite=stablesection=all


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




Re: libglib1.2ldbl

2009-03-24 Thread Daryl Styrk

André Moreira wrote:

Hey,

been there already, got the source
[glib1.2_1.2.10.orig.tar.gz]http://ftp.de.debian.org/debian/pool/main/g/glib1.2/glib1.2_1.2.10.orig.tar.gzbuild
it and... no libglib1.2ldbl anywhere...

That's why I was looking for a repository that had it. What repos are you
using with aptitude.

I have a minimal debian install on a samllform PC with XCFE (or something
like that) as X.

Cheers


deb http://http.us.debian.org/debian/ lenny main contrib non-free

should get it done.


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




Re: How can I install mencoder on Lenny?

2009-03-24 Thread Daryl Styrk

Thomas Weinbrenner wrote:



My advice is to read what's written on http://debian-multimedia.org/.

Because these questions are answered there.



And don't forget the key..


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




Re: Flash player for Lenny/64 - But from where?

2009-03-23 Thread Daryl Styrk

Frederik Kriewitz wrote:



Download the 64 Bit plugin from
http://labs.adobe.com/downloads/flashplayer10.html
extract it and copy and copy libflashplayer.so to /usr/lib/iceweasel/plugins/




+1 to that..


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




Re: users backup (will change the root hard disk)

2009-03-23 Thread Daryl Styrk

Pol Hallen wrote:

Hi folks :-)

I need change my root hard disk and I'd like save all system users (many 
because each has a mailbox).


Is there a tool (or which program) can I use for do this?

thanks :-)
 
Pol





Almost too many to choose from..


http://www.debian.org/doc/manuals/reference/ch-tips.en.html#s-diff-backup

http://wiki.debian.org/BackupAndRecovery

I'd probably just go with tar



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




Re: Stopwatch

2009-03-23 Thread Daryl Styrk

Séamas Ó Brógáin wrote:

Hello.

Is there a simple stopwatch application for Debian (Gnome)? I’ve looked 
in the repositories, without success.





$ aptitude show stopwatch
Package: stopwatch
State: installed
Automatically installed: no
Version: 3.5-1
Priority: optional
Section: utils
Maintainer: Bart Martens ba...@debian.org
Uncompressed Size: 127k
Depends: tk8.4
Description: A virtual stopwatch and timer
 Stopwatch is a stopwatch and timer program that uses the Tk toolkit. 
It has

 millisecond accuracy.
Homepage: http://expect.nist.gov/stopwatch/



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




Re: Bridging with firestarter and dhcp3-server.[SOLVED]

2009-03-22 Thread Daryl Styrk

Daryl Styrk wrote:

I'm attempting to bridge wlan0 with eth0.  I've done this successfully
in the past with firestarter and dhcp3-server.  However I'm running into
some issues trying to set this up now.

What I have done in the past is set eth0 static, and enabled internet
connection sharing in firestarter.  Which ends up with the following
configuration files.

cat /etc/network/interfaces

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0

iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0

auto eth0

$ cat /etc/dhcp3/dhcpd.conf
# DHCP configuration generated by Firestarter
ddns-update-style interim;
ignore client-updates;

subnet 192.168.0.0 netmask 255.255.255.0 {
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name-servers 10.0.1.1;
option ip-forwarding off;
range dynamic-bootp 192.168.0.100 192.168.0.254;
default-lease-time 21600;
max-lease-time 43200;
}

After a restart of networking, firestarter, and dhcp3-server all was
well.  This has worked on 3 separate instances.

However, now after restarting all services and attempting to request an
address on eth0 from another machine it fails with No working leases in 
persistent database - sleeping.  I can see the interface eth0 here on 
the laptop and while requesting the address the lights are not flashing 
like they usually would which leads me to believe the bridge/dhcp server 
isn't working.


I'm a bit lost where to start, I've looked through the logs for any 
failurs, errors etc.


# grep error /var/log/messages

Mar 21 13:38:16 t61 kernel: [51443.770985] firestarter[13057]: segfault 
at 65726952 ip b72b1452 sp b6965300 error 6 in 
libglib-2.0.so.0.1600.6[b725b000+b4000]
Mar 21 13:53:12 t61 kernel: [52343.228568] firestarter[18697]: segfault 
at 65726952 ip b739c452 sp b5dc0300 error 6 in 
libglib-2.0.so.0.1600.6[b7346000+b4000]
Mar 21 14:07:56 t61 kernel: [  764.930775] firestarter[7807]: segfault 
at 117808 ip b71b0ebc sp b5dff17c error 4 in libc-2.7.so[b7142000+155000]
Mar 21 15:21:03 t61 kernel: [ 3080.508699] firestarter[11594]: segfault 
at 6e657651 ip b71cdf61 sp bfe6fc04 error 4 in libc-2.7.so[b715f000+155000]


I have no idea about segfaults.  I've never encountered one that I was 
aware of.  I have since restarted everything again after finding these 
in the logs to see if it would be reproduced, but they were not.


Daryl




Replying to myself...
Turns out above steps for bridging/dhcp still work fine.  It seems the 
Debian installer was refusing to request an address from the laptop/dhcp 
server.  However, once I moved the machine to a wire off the modem, it 
picked up an address just fine.  Then of course when the install was 
finished, there is no problem requesting an address from the laptop/dhcp 
server.  Strange.


Any ideas why that would be?

Daryl


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




Re: MagmaLinux 9.3 has benn released

2009-03-21 Thread Daryl Styrk

Cybe R. Wizard wrote:

Cavit Cahit VURAL ccvu...@magmalinux.org  said:

We are glad to anounce the release of MagmaLinux 9.3


A thought: maybe a link would be of assistance...

Cybe R. Wizard



http://www.magmalinux.org/


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




Bridging with firestarter and dhcp3-server.

2009-03-21 Thread Daryl Styrk

I'm attempting to bridge wlan0 with eth0.  I've done this successfully
in the past with firestarter and dhcp3-server.  However I'm running into
some issues trying to set this up now.

What I have done in the past is set eth0 static, and enabled internet
connection sharing in firestarter.  Which ends up with the following
configuration files.

cat /etc/network/interfaces

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0

iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0

auto eth0

$ cat /etc/dhcp3/dhcpd.conf
# DHCP configuration generated by Firestarter
ddns-update-style interim;
ignore client-updates;

subnet 192.168.0.0 netmask 255.255.255.0 {
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name-servers 10.0.1.1;
option ip-forwarding off;
range dynamic-bootp 192.168.0.100 192.168.0.254;
default-lease-time 21600;
max-lease-time 43200;
}

After a restart of networking, firestarter, and dhcp3-server all was
well.  This has worked on 3 separate instances.

However, now after restarting all services and attempting to request an
address on eth0 from another machine it fails with No working leases in 
persistent database - sleeping.  I can see the interface eth0 here on 
the laptop and while requesting the address the lights are not flashing 
like they usually would which leads me to believe the bridge/dhcp server 
isn't working.


I'm a bit lost where to start, I've looked through the logs for any 
failurs, errors etc.


# grep error /var/log/messages

Mar 21 13:38:16 t61 kernel: [51443.770985] firestarter[13057]: segfault 
at 65726952 ip b72b1452 sp b6965300 error 6 in 
libglib-2.0.so.0.1600.6[b725b000+b4000]
Mar 21 13:53:12 t61 kernel: [52343.228568] firestarter[18697]: segfault 
at 65726952 ip b739c452 sp b5dc0300 error 6 in 
libglib-2.0.so.0.1600.6[b7346000+b4000]
Mar 21 14:07:56 t61 kernel: [  764.930775] firestarter[7807]: segfault 
at 117808 ip b71b0ebc sp b5dff17c error 4 in libc-2.7.so[b7142000+155000]
Mar 21 15:21:03 t61 kernel: [ 3080.508699] firestarter[11594]: segfault 
at 6e657651 ip b71cdf61 sp bfe6fc04 error 4 in libc-2.7.so[b715f000+155000]


I have no idea about segfaults.  I've never encountered one that I was 
aware of.  I have since restarted everything again after finding these 
in the logs to see if it would be reproduced, but they were not.


Daryl


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




Re: DVD authoring

2009-03-20 Thread Daryl Styrk




That's what she said.



This has been getting dropped at work for a couple weeks now...


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




Re: Technical Inquiry

2009-03-20 Thread Daryl Styrk

Lisi Reisz wrote:



When I need to change a root password on Etch or Lenny because I do not know 
the root password, I chroot from a live CD which does allow root access.


Lisi



Agree...  I just changed the password on a laptop I rarely use running 
Lenny this way.


Alternatively
$ sudo su

on a system using sudo should allow a quick fix.

Daryl


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




Re: Gateway P-7805u Any success - install using debian on this laptop? Bios upgrade procedure?

2009-03-20 Thread Daryl Styrk

tech lists wrote:

Has anyone successfully installed  used Debian on either this
(P-7805u) or the simiilar 7811 Gateway laptops?  I'm having trouble
finding any success stories on Google ( or this mailing list, or the
debian-laptop mailing list, or linux laptops website) for these
laptops or any Gateway FX laptops (or even Gateway laptops in general)
for any linux distro.  The laptop has been out since the middle of
last year with the only change coming at the end of last year with a
slight downgrade on the screen resolution.  Surely someone's tried
linux on this laptop in the last 9 months?

If anyone is using this laptop with Debian or any linux flavor, is
there a known procedure for updating the bios (if/when necessary)
without either booting into Vista or without a Windows partition at
all?

Thanks,

Laura




I curious what problems you are running into on the install?  I've 
installed Debian etch and lenny to a few different makes of laptops now 
and really haven't run into anything that can't be worked around. 
Lenovo, Toshiba, HP, Sony, Mac, and an old Gateway.  By now I would 
think just about everything should work.


Daryl


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




Re: Gateway P-7805u Any success - install using debian on this laptop? Bios upgrade procedure?

2009-03-20 Thread Daryl Styrk

Mark Goldshtein wrote:



a) AFAIR, Debian has a special mailing list fully deducated to
laptops. That may be more useful.

b) Try one of the Debian stable LiveCD, for example:
http://cdimage.debian.org/debian-cd/5.0.0-live/i386/iso-cd/debian-live-500-i386-gnome-desktop.iso

and that will give you almost exact look as if you work in already
installed system. If you will face a problem, that will be almost
exactly the same problem as if you face it with installed system. So,
basically, you have a chance to resolve possible upcoming problems
before you actually install the system.




The OP does not own the laptop in question yet.


Laura,

   You mentioning updating BIOS made me go take a look at how Lenovo
was doing it for my T-61..  The update was with a bootable CD I
downloaded from their site and everything went smoothly.. overall took
roughly about 5 minutes with the
downloadburnrebootinstallrebootenjoying Debian..



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




  1   2   3   >