Date: Thu, 27 Sep 2007 02:59:11 +0000 (UTC)
From: Oleg Verych <!gmane?olecom.ENOMSG@flower.upol.cz>
To: debian-user@lists.debian.org
Subject: Re: Newbie help with simple C program, USB device under Debian
Message-ID: <slrnffm81j.d4n.!gmane?olecom.ENOMSG@flower.upol.cz>
27-09-2007, Nick Lidakis:
> Sending this again as it did not seem to get to the list when I first
> sent it this morning.
Oh, man, are you serious?
First. No one interested in you prev. email sending failures, right.
Because this is a noise, not information.
> I am need of some help with a USB device under Debian; trying last night
> multiple times to no avail.
Second. Debian is a software distribution. What system are using is
possible to see, after `uname -a`:
#v+
olecom@flower:/tmp$ uname -a
Linux flower 2.6.18-4-amd64 #1 SMP Fri May 4 00:37:33 UTC 2007 x86_64 GNU/Linux
olecom@flower:/tmp$
#v-
See Linux? That means, that a guy, talking to your hardware is Linux, not
Hurd or FreeBSD, alright.
> I have a Dallas Semiconductor Thermochron temperature data logger that I
> am trying to set. The data logger (DS1921G-F5) is attached to a USB
> bridge (DS1921G-F5). I downloaded their linux utilities which consist of
> two simple C programs: One to set a "mission" and the other to download
> the datat logged:
>
> thermo21.c thermo21.h thermodl.c thermoms.c
>
> The readme states:
Stop. If this info is available on-line, please give an URL. If this is
closed NDA stuff, and you are newbie driver programmer, then you'd better
keep it away. :)
> /These utilities are used to download (thermodl) and
> mission (thermoms) a DS1921G Thermochron iButton. The
> DS1921Z/DS1921H are not supported with this application.
>
> THERMODL:
>
> usage: thermodl 1wire_net_name <output_filename> </Fahrenheit>
> - Thermochron download on the 1-Wire Net port
> - 1-wire_net_port required port name
> example: "COM1" (Win32 DS2480B),"/dev/cua0"
> (Linux DS2480B),"1" (Win32 TMEX)
Seem, like very old doc. I've just prepared a snip from current doc,
which, you can find in the upload directory of my server:
#v+
olecom@flower:/tmp$ grep -m7 -B7 -A12 cua <linux-2.6.22-rc4/Documentation/devices.txt
| tail -n20 >serial-devices.txt
olecom@flower:/tmp$ chmod o+r serial-devices.txt
#v-
> - <output_filename> optional output filename
> - </Fahrenheit> optional Fahrenheit mode (default Celsius)
> - version 1.03
>
> Required on the command line is the 1-Wire port name:
>
> example: "COM1" (Win32 DS2480B)
> "/dev/cua0" (Linux DS2480B)
OK. The main idea, that they are using standard serial port (rs232)
interface for communication here.
> "1" (Win32 TMEX)
> "\\.\DS2490-1" (Win32 USB DS2490)
> "{1,5}" (Win32 DS2480B multi build)
> "{1,6}" (Win32 USB DS2490 multi build)
> "{1,2}" (Win32 DS1410E multi build)
And unknown Windows magic here.
> /When the device is plugged in dmesg shows:
>
> usb 1-10: new full speed USB device using ohci_hcd and address 6
> PM: Adding info for usb:1-10
> PM: Adding info for No Bus:usbdev1.6_ep00
> usb 1-10: configuration #1 chosen from 1 choice
> PM: Adding info for usb:1-10:1.0
> PM: Adding info for No Bus:usbdev1.6_ep81
> PM: Adding info for No Bus:usbdev1.6_ep02
> PM: Adding info for No Bus:usbdev1.6_ep83
Is that all? His *is* the actual information. But there's no hint, that
you've cut it too late or too early. So, more output is needed.
> In /dev I have:
>
> usbdev1.1_ep81
> usbdev1.6_ep83
> usbdev1.6_ep02
One usb device with two endpoints(dmesg shows three). One with one (i
guess). Doc might say about what to use and how to use (but not that
you've quoted here). Try to look at sources. They provide sources for
Linux most of the time. Because Linux have stable API nonsense feature.
And those dude on Linux like to read sources.
> Trying something like: /sh thermodl /dev/usbdev1.1_ep81 t.txt /results
> in an error.
Are you fan of the slash (i.e. `/')? Slash in UNIX-like OSes is
directory separator. It is *not* an option separator, like in the DOS.
`/sh' means loading for execution file `/sh', i.e. root directory, file
`sh'. But somehow shell got loaded and took the input, let's see.
> /thermodl.c: line 1:
Hgm. C file. Sources of the C language file.
This must be almost all you need!
> //------------------------------------------------------------------: No
> such file or directory
> thermodl.c: line 2: syntax error near unexpected token `('
> thermodl.c: line 2: `// Copyright (C) 2000 Dallas Semiconductor
> Corporation, All Rights 'eserved.
The shell does not like text of the sources of the C langage from that
file. :-\
> /Any hints on how to call the device?
``The data logger (DS1921G-F5)''?
_____:)
Date: Wed, 26 Sep 2007 23:00:27 -0400
From: "Nguyen, Cuong K." <cuongkieunguyen@gmail.com>
To: debian-user@lists.debian.org
Subject: bash, xbindkeys and dual screen
Message-ID: <46FB1CCB.5000005@gmail.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Hi all,
I have a problem - basically with some bash codes. I have dual screen
and one mouse, and I want to switch my mouse back and forth from screen
1 to screen 2 etc by pressing a keyboard. In order to do that, I did the
following:
- install switchscreen, then by typing "switchscreen 0" or
"switchscreen 1" will switch me to Desktop 0 or 1.
- typing "switchscreen 0" or 1 is annoying, then I create a script
/bin/switchnow like below:
########################
#!/bin/bash
case $DISPLAY in
:0.0 ) exec switchscreen 1
;;
:0.1 ) exec switchscreen 0
esac
########################
and make it executable, then now by typing just switchnow on terminal, I
will move back and forth from Desktop 0 and 1. Obviously it works :)
3. I install xbindkeys, find the corresponding key and create
~/.xbindkeysrc as follow
########################
# shortcut 2
"switchnow"
m:0x0 + c:118
########################
Okey, everything seems to be done now. I press the key, and from Desktop
0, I am switched to Desktop 1. But when I press the same key again,
nothing happens. :(
It *seems* that when xbindkeys works and executes switchnow, the value
of DISPLAY is kept unchanged to be :0.0. But in desktop 1, open terminal
and when I type "echo $DISPLAY" then I get :0.1. I guess I wrote the
script incorrectly, or did I miss something here?
I do not know programming, and do not know bash either. So please do not
blame me if I am too noob to bash :D.
Thanks a million,
KC.
Date: Thu, 27 Sep 2007 03:02:49 +0000 (UTC)
From: Logan Five <logan5@pobox.com>
To: debian-user@lists.debian.org
Subject: Re: Network settings don't stick after reboot
Message-ID:
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Mumia W.. <paduille.4061.mumia.w+nospam <at> earthlink.net> writes:
>
> Please post /etc/network/interfaces
>
>
I did above in response to somebody else.
Date: Wed, 26 Sep 2007 20:18:32 -0700
From: Andrew Sackville-West <andrew@farwestbilliards.com>
To: debian-user@lists.debian.org
Subject: Re: Debian may lose a user
Message-ID: <20070927031832.GG4870@localhost.localdomain>
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="X3gaHHMYHkYqP6yf"
Content-Disposition: inline
--X3gaHHMYHkYqP6yf
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Thu, Sep 27, 2007 at 03:50:47AM +0200, s. keeling wrote:
> s/Jones/West/g
>=20
> You gotta change your name to Steve.
Steve Sackville-Jones??
A
--X3gaHHMYHkYqP6yf
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFG+yEIaIeIEqwil4YRAuEnAJ4h5g5pdbndkjpLRa2k+0WrvevJZwCaAsfT
LRLbnacYJLwN1N3T9GdDPq8=
=6n+2
-----END PGP SIGNATURE-----
--X3gaHHMYHkYqP6yf--
Date: Thu, 27 Sep 2007 05:37:56 +0200 (CEST)
From: "s. keeling" <keeling@nucleus.com>
To: debian-user@lists.debian.org
Subject: Re: Stupid question (was Re: Repost of some earlier described "challenges")
Message-ID: <slrnffm9ck.jlu.keeling@heretic.nucleus.com>
Mike McCarty <Mike.McCarty@sbcglobal.net>:
>
> I don't like it, but I also don't like reloading. :-)
Ah, ya puss! Burn a backup CD and do it. Think of all those doors
opening up for you. You can try anything! =[8]-)
--
Any technology distinguishable from magic is insufficiently advanced.
(*)
http://blinkynet.net/comp/uip5.html Linux Counter #80292
- -
http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me.
Date: Thu, 27 Sep 2007 07:02:33 +0300
From: Andrei Popescu <andreimpopescu@gmail.com>
To: debian-user@lists.debian.org
Subject: Re: How to reply in the mailing lists
Message-ID: <20070927040233.GE10571@think.homenet>
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="Yb+qhiCg54lqZFXW"
Content-Disposition: inline
--Yb+qhiCg54lqZFXW
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Wed, Sep 26, 2007 at 07:50:06PM -0400, Nick Lidakis wrote:
> I think trimming means keeping sideburns at an acceptably trimmed level=
=20
> until lamb chops are back in style, for males. Females shall keep their=
=20
> runways appropriately devoid of any shoulder dandelion weeds.
If that's a joke I don't get it ...
Regards,
Andrei
--=20
If you can't explain it simply, you don't understand it well enough.
(Albert Einstein)
--Yb+qhiCg54lqZFXW
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFG+ytZqJyztHCFm9kRAh+/AJ4+yb2r4oDrfOo4y3FYaCNYuYHeVgCfXy/J
7bB2gzcY+eVGibfRBtvK2V0=
=Rzg8
-----END PGP SIGNATURE-----
--Yb+qhiCg54lqZFXW--
Date: Thu, 27 Sep 2007 03:51:36 +0000 (UTC)
From: Logan Five <logan5@pobox.com>
To: debian-user@lists.debian.org
Subject: Re: Network settings don't stick after reboot
Message-ID: <loom.20070927T034935-775@post.gmane.org>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Logan Five <logan5 <at> pobox.com> writes:
Ok, I found it. Someone writing me directly in email pointed me to the right
place. I had a setting in rc.local that set the static IP. Now I remember
getting a tip to do that on a web posting somewhere. But I think it was a
generic tip and not one geared directly towards Debian so probably not the best
way to go about it. Everything works great now!
Date: Wed, 26 Sep 2007 20:51:58 -0700 (PDT)
From: Khurram Pirzada <kmpirzada@yahoo.com>
To: debian-user@lists.debian.org
Subject: DSL setup under Debian ETCH
Message-ID: <971369.98283.qm@web50404.mail.re2.yahoo.com>
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Hi all,
I have just installed Debian ETCH under GNOME mode (and NOT KDE). I have =
256kbps DSL
connection which works fine on same machine under XP. Now I want to be ab=
le to use
it under ETCH. [XP is installed on 40GB(master) and ETCH is installed on
60GB(slave)]
Can someone please guide me through the process. As a tip off, I am given=
IP
address, default gateway, NO DNS, my home numer is my user name and a pas=
sword.
I would really appreciate if somebody can detailed explain to me.
Thanks once again.
Khurram
=20
_________________________________________________________________________=
___________
Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated=
for today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=3Dmonopolyherenow =20
Date: Thu, 27 Sep 2007 07:29:40 +0300
From: Andrei Popescu <andreimpopescu@gmail.com>
To: debian-user@lists.debian.org
Subject: Re: DSL setup under Debian ETCH
Message-ID: <20070927042940.GF10571@think.homenet>
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="8TaQrIeukR7mmbKf"
Content-Disposition: inline
--8TaQrIeukR7mmbKf
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Wed, Sep 26, 2007 at 08:51:58PM -0700, Khurram Pirzada wrote:
> Hi all,
>=20
> I have just installed Debian ETCH under GNOME mode (and NOT KDE). I have =
256kbps DSL
> connection which works fine on same machine under XP. Now I want to be ab=
le to use
> it under ETCH. [XP is installed on 40GB(master) and ETCH is installed on
> 60GB(slave)]
>=20
> Can someone please guide me through the process. As a tip off, I am given=
IP
> address, default gateway, NO DNS, my home numer is my user name and a pas=
sword.
How is the DSL modem connected to your computer (ethernet, USB, ...). Is=20
that a PPPoA or PPPoE connection? If you don't know what I'm talking=20
about maybe you could describe what you did under Windows to make it=20
work.
Regards,
Andrei
--=20
If you can't explain it simply, you don't understand it well enough.
(Albert Einstein)
--8TaQrIeukR7mmbKf
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFG+zG0qJyztHCFm9kRAgbnAJ9mksXA+6K9CRp30GLF/hMvti69DACfce5Q
VsmStZTH5aQVnWnSZYP9M9A=
=sNQq
-----END PGP SIGNATURE-----
--8TaQrIeukR7mmbKf--
Date: Thu, 27 Sep 2007 00:11:54 -0400
From: Nick Lidakis <nlidakis@verizon.net>
To: Oleg Verych <!gmane?olecom.ENOMSG@flower.upol.cz>
Cc: debian-user@lists.debian.org
Subject: Re: Newbie help with simple C program, USB device under Debian
Message-id: <46FB2D8A.4070108@verizon.net>
Content-type: text/plain; charset=ISO-8859-1; format=flowed
Content-transfer-encoding: 7bit
Oleg Verych wrote:
> 27-09-2007, Nick Lidakis:
>
>> Sending this again as it did not seem to get to the list when I first
>> sent it this morning.
>>
>
> Oh, man, are you serious?
>
> First. No one interested in you prev. email sending failures, right.
> Because this is a noise, not information.
>
No one /is /interested in your /previous /email sending failures, right.
I just thought I would fix that for you since you seem to be a graduate
of the Sum Dum Dik school of English.
I'm truly sorry. That was a bit harsh. Perhaps some mothers can not
afford a proper tutor of English Perhaps she was working long hours for
low wage, doing her best I am sure, at some Czechoslovakian sailor wanna
hump-hump bar?
No worries. You are forgiven.
>> I am need of some help with a USB device under Debian; trying last night
>> multiple times to no avail.
>>
>
> Second. Debian is a software distribution. What system are using is
> possible to see, after `uname -a`:
>
> #v+
> olecom@flower:/tmp$ uname -a
> Linux flower 2.6.18-4-amd64 #1 SMP Fri May 4 00:37:33 UTC 2007 x86_64 GNU/Linux
> olecom@flower:/tmp$
> #v-
>
> See Linux? That means, that a guy, talking to your hardware is Linux, not
> Hurd or FreeBSD, alright.
>
You think I would take advice from someone who named their Debian box
/flower/? Pffft...
>
>> I have a Dallas Semiconductor Thermochron temperature data logger that I
>> am trying to set. The data logger (DS1921G-F5) is attached to a USB
>> bridge (DS1921G-F5). I downloaded their linux utilities which consist of
>> two simple C programs: One to set a "mission" and the other to download
>> the datat logged:
>>
>> thermo21.c thermo21.h thermodl.c thermoms.c
>>
>> The readme states:
>>
>
> Stop. If this info is available on-line, please give an URL. If this is
> closed NDA stuff, and you are newbie driver programmer, then you'd better
>
I said it was a readme that was enclosed with the simple C programs
enclosed.
And your sentence should have been /a URL.
/ Here's a little guide for you sweet cheeks:
"Remember, using a or an depends on the sound that begins the
next word. So...
* a + singular noun beginning with a consonant: /a boy; a car; a
bike; a zoo; a dog/
* an + singular noun beginning with a vowel: /an elephant; an egg;
an apple; an idiot; an orphan/
* a + singular noun beginning with a consonant sound: a user (sounds
like 'yoo-zer,' i.e. begins with a consonant 'y' sound, so 'a' is
used); a university; a unicycle
If the noun is modified by an adjective, the choice between a and an
depends on the initial sound of the adjective that immediately follows
the article:
* a broken egg
* an unusual problem
* a European country (sounds like 'yer-o-pi-an,' i.e. begins with
consonant 'y' sound)"
> keep it away. :)
>
I'll just keep you away?
>
>> /These utilities are used to download (thermodl) and
>> mission (thermoms) a DS1921G Thermochron iButton. The
>> DS1921Z/DS1921H are not supported with this application.
>>
>> THERMODL:
>>
>> usage: thermodl 1wire_net_name <output_filename> </Fahrenheit>
>> - Thermochron download on the 1-Wire Net port
>> - 1-wire_net_port required port name
>> example: "COM1" (Win32 DS2480B),"/dev/cua0"
>> (Linux DS2480B),"1" (Win32 TMEX)
>>
>
> Seem, like very old doc. I've just prepared a snip from current doc,
> which, you can find in the upload directory of my server:
>
/Seems like a very old doc. /There is no comma required.
> #v+
> olecom@flower:/tmp$ grep -m7 -B7 -A12 cua <linux-2.6.22-rc4/Documentation/devices.txt
> | tail -n20 >serial-devices.txt
> olecom@flower:/tmp$ chmod o+r serial-devices.txt
> #v-
>
>
Again, that flower thing just makes me laugh. Are /you/ serious? Why not
just be more descriptive and call the box pansy? Perhaps change your
user name to fancy pants?
>> - <output_filename> optional output filename
>> - </Fahrenheit> optional Fahrenheit mode (default Celsius)
>> - version 1.03
>>
>> Required on the command line is the 1-Wire port name:
>>
>> example: "COM1" (Win32 DS2480B)
>> "/dev/cua0" (Linux DS2480B)
>>
>
> OK. The main idea, that they are using standard serial port (rs232)
> interface for communication here.
>
>
>> "1" (Win32 TMEX)
>> "\\.\DS2490-1" (Win32 USB DS2490)
>> "{1,5}" (Win32 DS2480B multi build)
>> "{1,6}" (Win32 USB DS2490 multi build)
>> "{1,2}" (Win32 DS1410E multi build)
>>
>
> And unknown Windows magic here.
>
>
>> /When the device is plugged in dmesg shows:
>>
>> usb 1-10: new full speed USB device using ohci_hcd and address 6
>> PM: Adding info for usb:1-10
>> PM: Adding info for No Bus:usbdev1.6_ep00
>> usb 1-10: configuration #1 chosen from 1 choice
>> PM: Adding info for usb:1-10:1.0
>> PM: Adding info for No Bus:usbdev1.6_ep81
>> PM: Adding info for No Bus:usbdev1.6_ep02
>> PM: Adding info for No Bus:usbdev1.6_ep83
>>
>
> Is that all? His *is* the actual information. But there's no hint, that
> you've cut it too late or too early. So, more output is needed.
>
Still trying to decipher that... Whatever that is.
>
>> In /dev I have:
>>
>> usbdev1.1_ep81
>> usbdev1.6_ep83
>> usbdev1.6_ep02
>>
>
> One usb device with two endpoints(dmesg shows three). One with one (i
> guess). Doc might say about what to use and how to use (but not that
> you've quoted here). Try to look at sources. They provide sources for
> Linux most of the time. Because Linux have stable API nonsense feature.
> And those dude on Linux like to read sources.
>
>
>> Trying something like: /sh thermodl /dev/usbdev1.1_ep81 t.txt /results
>> in an error.
>>
>
> Are you fan of the slash (i.e. `/')? Slash in UNIX-like OSes is
> directory separator. It is *not* an option separator, like in the DOS.
>
> `/sh' means loading for execution file `/sh', i.e. root directory, file
> `sh'. But somehow shell got loaded and took the input, let's see.
>
>
>> /thermodl.c: line 1:
>>
>
> Hgm. C file. Sources of the C language file.
> This must be almost all you need!
>
>
>> //------------------------------------------------------------------: No
>> such file or directory
>> thermodl.c: line 2: syntax error near unexpected token `('
>> thermodl.c: line 2: `// Copyright (C) 2000 Dallas Semiconductor
>> Corporation, All Rights 'eserved.
>>
>
> The shell does not like text of the sources of the C langage from that
> file. :-\
>
>
>> /Any hints on how to call the device?
>>
>
> ``The data logger (DS1921G-F5)''?
>
> _____:)
>
>
How did you manage to type that reply... That is, with your head so
far up your butt?
No worries. I received a reply off list that is pushing me in the right
direction; just enough hints to make me work for the prize.
Sincerely,
Nick
Date: Wed, 26 Sep 2007 21:48:48 -0700
From: "David Fox" <dfox94085@gmail.com>
To: "Debian Users" <debian-user@lists.debian.org>
Subject: Re: Openoffice file takes a long time to open
Message-ID: <359a3c580709262148q6595e824y561c3ab1b2706a53@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Ralph wrote:
> Don't know, John, I'm just a simple user. If it were me, I'd copy the
> contents of the doc onto the clipboard, paste it into a text-only
Well, I remember doing something similar at a previous job. I was
doing quite a bit of Excel spreadsheets there, and over time this
spreadsheet I was using got a bit on the complex side, and would bring
the workstation I was using to its knees, with disk I/O going on
constantly. (The machine just was too underpowered, only had a 128 meg
of RAM etc.)
What I ended up doing was to get a copy of staroffice (this was back
in 2000) then copy the spreadsheet over to that, and then reload it
into Excel. That helped quite a bit, since I apparently had quite a
number of otherwise "unused" cell areas that still got moved in and
out of system RAM while I was working on the main sheet.
> Ralph
Date: Thu, 27 Sep 2007 00:49:57 -0400
From: Kevin Mark <kevin.mark@verizon.net>
To: debian-user@lists.debian.org
Subject: Re: Newbie help with simple C program, USB device under Debian
Message-ID: <20070927044957.GE558@horacrux>
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Thu, Sep 27, 2007 at 12:11:54AM -0400, Nick Lidakis wrote:
> Oleg Verych wrote:
>> 27-09-2007, Nick Lidakis:
>> =20
>>> Sending this again as it did not seem to get to the list when I first=
=20
>>> sent it this morning.
>>> =20
>>
>> Oh, man, are you serious?
>>
>> First. No one interested in you prev. email sending failures, right.
>> Because this is a noise, not information.
>> =20
> No one /is /interested in your /previous /email sending failures, right.
>
> I just thought I would fix that for you since you seem to be a graduate o=
f=20
> the Sum Dum Dik school of English.
>
> I'm truly sorry. That was a bit harsh. Perhaps some mothers can not affor=
d=20
> a proper tutor of English Perhaps she was working long hours for low wage=
,=20
> doing her best I am sure, at some Czechoslovakian sailor wanna hump-hump=
=20
> bar?
>
Please refrain from your attacks. 'Be nice to folks' is a general rule.
Insulting folks about background, sexual orientation, or language IN ONE
POST is beyond the pale. While folks here ocasssionaly make slight
taunts or comments at one another, it is expected that newcomers refrain
=66rom this behavior for a while until you become familar with the norms
on this list. Also, if you want volunteers help, especially on an
(off-topic) OT issue like getting a c program to compile on Debian, you
should be sugar sweet, not nitric acid. =B4on-topic' would normally be
'installing debian packages','upgrading distros', 'apt/dpkg/aptitude
problems','video card or network issue'. Someone compiling a usb
datalogging device program is usually someone who knows something about
Gnu/Linux, software compiling and hardware hacking. If you do not, then
you need someones help, that would be the nice volunteers here. we get
zero dollars for helping you, the least we expect is kindness.
cheers,
Kev
--=20
| .''`. =3D=3D Debian GNU/Linux =3D=3D | my web site: |
| : :' : The Universal |mysite.verizon.net/kevin.mark/|
| `. `' Operating System | go to counter.li.org and |
| `- http://www.debian.org/ | be counted! #238656 |
| my keyserver: subkeys.pgp.net | my NPO: cfsg.org |
|join the new debian-community.org to help Debian! |
|_______ Unless I ask to be CCd, assume I am subscribed _______|
Date: Thu, 27 Sep 2007 00:53:54 -0400
From: Kevin Mark <kevin.mark@verizon.net>
To: debian-user@lists.debian.org
Subject: Re: DSL setup under Debian ETCH
Message-ID: <20070927045354.GF558@horacrux>
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
On Thu, Sep 27, 2007 at 07:29:40AM +0300, Andrei Popescu wrote:
> On Wed, Sep 26, 2007 at 08:51:58PM -0700, Khurram Pirzada wrote:
> > Hi all,
> >
> > I have just installed Debian ETCH under GNOME mode (and NOT KDE). I have 256kbps DSL
> > connection which works fine on same machine under XP. Now I want to be able to use
> > it under ETCH. [XP is installed on 40GB(master) and ETCH is installed on
> > 60GB(slave)]
> >
> > Can someone please guide me through the process. As a tip off, I am given IP
> > address, default gateway, NO DNS, my home numer is my user name and a password.
>
> How is the DSL modem connected to your computer (ethernet, USB, ...). Is
> that a PPPoA or PPPoE connection? If you don't know what I'm talking
> about maybe you could describe what you did under Windows to make it
> work.
It also maybe useful to tell us what model of modem you have. And if you
have ever configured an ethernet connection on Debian. Most of the
configure is done in the /etc/network/interface file. 'man interfaces'
would give you some help. Also, 'lspci' would help us to know what
ethernet card you have.
-K
--
| .''`. == Debian GNU/Linux == | my web site: |
| : :' : The Universal |mysite.verizon.net/kevin.mark/|
| `. `' Operating System | go to counter.li.org and |
| `- http://www.debian.org/ | be counted! #238656 |
| my keyserver: subkeys.pgp.net | my NPO: cfsg.org |
|join the new debian-community.org to help Debian! |
|_______ Unless I ask to be CCd, assume I am subscribed _______|
Date: Wed, 26 Sep 2007 22:06:24 -0500
From: "Mumia W.." <paduille.4061.mumia.w+nospam@earthlink.net>
To: Debian User List <debian-user@lists.debian.org>
Subject: Re: xmodmap again - not solved after all
Message-ID: <46FB1E30.2060303@earthlink.net>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
On 09/26/2007 08:08 PM, s. keeling wrote:
> [ method of invoking xmodmap snipped ]
> in my ~/.xinitrc (I'm a southpaw, btw).
>
>
Thanks.
End of debian-user-digest Digest V2007 Issue #2484
**************************************************
Received on Thu Sep 27 01:21:10 2007