Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

linux · This is a mailing list for Linux

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1008
  • Category: Linux
  • Founded: Apr 7, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 35496 - 35525 of 62879   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
35496 Carl A Stites
castites Send Email
Jul 1, 2002
7:33 am
... Have you tried using Konqueror or another X file browser to change the file name? It's not a command-line option, but it should get the job done. ...
35497 Godwin Stewart
grschinon Send Email
Jul 1, 2002
7:48 am
On Mon, 1 Jul 2002 09:22:00 +1000, Cameron Simpson <cs@...> wrote to ... So obvious we couldn't see it..... Maybe I needed a few cans of Foster's inside...
35498 Eric Maquiling
emaquiling Send Email
Jul 1, 2002
7:55 am
... Hash: SHA1 ... I think this works too: mv "-001.jpg 001.jpg". Or do the lazy way and type 'mc'. Did you install Midnight Commander? - -- Random...
35499 Eric Maquiling
emaquiling Send Email
Jul 1, 2002
8:02 am
... Hash: SHA1 ... Ooops, typo, I meant mv "-001.jpg"; 001.jpg. But reading from the posts, it was mv -- -file_name. I just remembered a friend who used to use...
35500 Bhasker C V
bhaslinux Send Email
Jul 1, 2002
1:51 pm
give rm -- -001.jpg this will remove it ! ... ===== Bye Bhasker C V The box said "Requires Windows 95, NT, or better", so I installed Linux. ...
35501 Bhasker C V
bhaslinux Send Email
Jul 1, 2002
1:54 pm
Hitting tab twice for displyaing all possibilities is the normal behaviour of bash shell ... ===== Bye Bhasker C V The box said "Requires Windows 95, NT, or...
35502 Nicholas Miller
dasnowman_99 Send Email
Jul 1, 2002
2:26 pm
I was trying to setup samba to have just a public share that doesnt require a username and password. Does someone have a smb.conf file they would be willing to...
35503 Michael Kjorling
arcticwolfsw... Send Email
Jul 1, 2002
2:54 pm
... Hash: SHA1 ... The sample /etc/smb.conf that ships with Samba in RH 6.2 includes a share definition that seems to be about what you like: # A publicly...
35504 vernon
heyvernusa Send Email
Jul 1, 2002
2:56 pm
I have been trying to login to my Red Hat 7.2 server using FTP and am getting the following message in my logs while trying to acccess it. Anyone have any ...
35505 Michael Kjorling
arcticwolfsw... Send Email
Jul 1, 2002
3:00 pm
... Hash: SHA1 ... I have the following files matching /etc/ftp*: [michael@varg michael]$ ls -l /etc/ftp* -rw-r--r-- 1 root root 17 May 20...
35506 Andrei Vancea
andrei_vancea Send Email
Jul 1, 2002
3:13 pm
Hi! I had the exact same problem. You have to change only one line security = share ; not user or server...
35507 Godwin Stewart
grschinon Send Email
Jul 1, 2002
3:15 pm
On Mon, 1 Jul 2002 16:54:12 +0200 (CDT), Michael Kjorling ... I'd also add "browseable=yes" if you want the share to show up in the Windows clients' "Network...
35508 Jason Helms
tidalstar2001 Send Email
Jul 1, 2002
3:34 pm
Hi Guys, Another question from the frazzled server setter upper guy: When performing a ping on my server at any given time, it MOSTLY returns a ping results...
35509 Ajay Gautam
ajaygautam Send Email
Jul 1, 2002
3:50 pm
Hello, Recently, I was trying to convert my digital photo album to a VCD. To get sound in, I needed to convert all pics to an MPEG stream, and add sound to it....
35510 Nicholas Miller
dasnowman_99 Send Email
Jul 1, 2002
4:47 pm
Great! Thanks. I will try that Nick ... From: Andrei Vancea To: linux@yahoogroups.com Sent: Monday, July 01, 2002 5:02 PM Subject: Re: [linux] SAMBA question ...
35511 Michael Karasch
shiba_akinari Send Email
Jul 1, 2002
7:16 pm
Hello All, I have a box running Redhat 7.3 with an older version of OpenSSH on it. I'd like to upgrade to 3.4, but ssh is the only way I have access to the box...
35512 Lewis Bergman
lbergman@... Send Email
Jul 1, 2002
7:22 pm
... use wget or lynx to download the RPM or tar and then untar/rpm -ivh it. By the way, for a RH box I would suggest a little utility script called frpms. It...
35513 Ed McMan
edmcman2 Send Email
Jul 1, 2002
7:24 pm
Monday, July 1, 2002, 3:12:26 PM, Michael Karasch wrote: MK> Hello All, MK> I have a box running Redhat 7.3 with an older version of OpenSSH on it. MK> I'd...
35514 Michael Karasch
shiba_akinari Send Email
Jul 1, 2002
8:33 pm
I just finished the upgrade. Thanks for the advice. ... From: Lewis Bergman [mailto:lbergman@...] Sent: Monday, July 01, 2002 2:23 PM To:...
35515 Jason Helms
tidalstar2001 Send Email
Jul 2, 2002
12:05 am
Hey guys, Any SED gurus know how do to this one? I have a file of format like this: XXXabcXXXXXXXDoe John jdoe@... I would like to take...
35516 John O'Donnell
mrlinux_us Send Email
Jul 2, 2002
12:47 am
... awk '{ print $1":"$2":"$3 }' < infile > outfile hmm . . . A little more detail in your question might help. Is Doe part of the code or his last name? ...
35517 Jason Helms
tidalstar2001 Send Email
Jul 2, 2002
1:53 am
Hi Johnny, Thanks for your reply.. I can't believe I didn't think of using Awk. Doe is a last name, and would be a seperate field. ... awk '{ print...
35518 John O'Donnell
mrlinux_us Send Email
Jul 2, 2002
2:02 am
... OK awk '{ print substr($1,1,13)":"substr($1,14)":"$2":"$3 }' < in > out ... -- === Never ask a geek why, just nod your head and slowly back away.=== ...
35519 Jason Helms
tidalstar2001 Send Email
Jul 2, 2002
2:22 am
That worked perfectly. Thank you very much! Jason ... OK awk '{ print substr($1,1,13)":"substr($1,14)":"$2":"$3 }' < in > out ... -- === Never ask a geek why,...
35520 Cameron Simpson
cameron_simpson Send Email
Jul 2, 2002
3:16 am
... sed 's/ */:/g' <file1 >file2 Note: TWO spaces. AWK is way over kill for this. And using Perl would be obscene. -- Cameron Simpson, DoD#743...
35521 Cameron Simpson
cameron_simpson Send Email
Jul 2, 2002
3:39 am
... Australians don't drink Foster's. We export it just to get rid of it. -- Cameron Simpson, DoD#743 cs@... http://www.zip.com.au/~cs/ What...
35522 chewalter Send Email Jul 2, 2002
4:40 am
OpenOffice.org PPC Linux Download Sites Last updated 2002 May 05 PPC Linux OpenOffice.org 1.0 is able to run on any PPC Linux system with glibc 2.2.1 or...
35523 vocis_noctis Send Email Jul 2, 2002
11:25 am
Hey, I got my webcam (USB Logitech Quickcam) to work in xawtv, but it is sooo slow. Does anyone know of other nice webcam software for kde 3? Or is it not...
35524 Steve
takeone2_2000 Send Email
Jul 2, 2002
12:19 pm
... Hash: SHA1 Slow has in frame updates are slow? Try changing the capture from grabdisplay to overlay ( I think that's they one. It may be overlay to ...
35525 Ajay Gautam
ajaygautam Send Email
Jul 2, 2002
1:55 pm
Hello, I am using mozilla on Mandrake Linux 8.2 on my laptop. Browsing is choppy (for the lack of a better word). When I press a movement key (up / down arrow,...
Messages 35496 - 35525 of 62879   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help