Re: adding title to mpg files.
On Wed, Oct 15, 2003 at 09:18:03AM -0700, Jonathan Bartlett wrote: > AND it will have to re-encode your movie, degrading the > quality of the whole thing. Come to think of it, kino only works on .dv > files. I can use .dv file if this is the only choice. The way I am dealing with video from my digital camcorder is: 1. dvgrab --autosplit --timestamp --format dv2 video- 2. select, cut or join files by avisplit and avimerge. 3. transcode and mplex to vcd/dvd format. (I have a batch file to do this.) 4. vcdimager to make vcd. Everything is fine and I only need some titles to differentiate sections of movies. I was trying to find a simple command to do this but I guess I will have to use kino before the second step. I will mess with kino. Thank everyone for your help. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: RedHat 9 on a Dell Inspiron 5150
On Wed, Oct 15, 2003 at 08:45:50AM -0400, Andy Malato wrote: > ModelName"Dell 1400x1050 Laptop Display Panel" > HorizSync31.5 - 90.0 > VertRefresh 59.0 - 75.0 > Option "dpms" > EndSection I have similar problem with my Samsung Syncmaster 700tft (different video card though). I manually narrowed the range of HorizSync and VertRefresh and make them closer to the idea ones. This fixed the video quality problem but the refresh rate is still not the one I would get from a windoze machine with correct driver. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: adding title to mpg files.
On Wed, Oct 15, 2003 at 12:30:07PM +0800, Edward Dekkers wrote: > Because I'm not sure whether you are after simple or advanced video > editing, I am after simple solution to a simple (?) problem. I am trying to avoid major video (mpeg1 and mpeg2 in vcd/dvd specification) recoding which, as MH point out, would compromise video quality. I 'thought' this can be done easily since adding subtitle is very common. Maybe I can prepare some subtitle file, then add(?) them to my mpeg files. > http://linuxshop.ru/linuxbegin/win-lin-soft-en/#43 This is a great page. But all solutions are 'big' ones. Maybe I can add some static frames before a mpeg file. Say, I gimp a jpeg file, duplicate 30 copies (necessary?), mencoder them into a 1 second mpeg file and then join it with the mpeg file (tool? I only know avimerge.). -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
adding title to mpg files.
Hello, everyone, I am sorry if my question is far off topic. I do not know exactly which mailinglist I should post this question to. I have a bunch of mpg files. I would like to add/overlay a simple title (e.g., 1 second long of 'in backyard') to each file. I thought this is easy but I found nothing after 30min googling. Can anyone give me a hint about which tool to use? (I am thinking of memcoder a jpg file to mpg movie and then ... overlay?) Many thanks in advance. Bo -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: Linux reading FAT32 partitions
On Sun, Oct 05, 2003 at 08:39:44PM -0600, KC wrote: > Can i partition a drive multiple times? Like partitioning a FAT32 > 120gb > drive, into 3 32gb partitions, is that a possible workaround? Or can linux > only read one FAT32 parition. And do I need to install an RPM for FAT32 > support? Sure. Each Fat32 parition can be at most 32G but you can have multiple partitions on your mobile harddrive. For example, If you use parted: (You can actually format the drive under windows if you prefer). > parted /dev/sda(sda is your mobile harddrive. use sfdisk -l to check.) > mkpart primary fat32 0 100 .. more mkpart fat32 ... then insert entries in /etc/fstab like /dev/sda1 /mnt/share1 vfatuser,noauto,utf8 0 0 /dev/sda2 /mnt/share2 vfatuser,noauto,utf8 0 0 and mount the drive as > mount /dev/sda1 etc -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: Linux reading FAT32 partitions
On Sun, Oct 05, 2003 at 07:54:34PM -0600, KC wrote: > > Yes. The partition size can not exceed 32G though. > What if the partition is larger than 32gb? > and is there any way around this, another file system that can have a much > larger max capacity, but still readable by windows and linux (NTFS for > example?) NTFS can be read, but not write by linux. You will need to install a small rpm to do this. (apt-get install kernel-ntfs ?) I have tried to find better solutions but failed. Now, I use fat32 to share files between two (dual boot) systems and if necessary, mount and read ntfs system files of windows. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: Linux reading FAT32 partitions
On Sun, Oct 05, 2003 at 06:09:30PM -0600, KC wrote: > I would like to have an external firewire drive, that both my windows and > linux machines can read. The drive is formatted with FAT32, can RH9 read > this natively? Or do i need to install an RPM or something? Yes. The partition size can not exceed 32G though. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: LFS support
On Mon, Sep 29, 2003 at 05:02:58PM -0300, Herbert Georg wrote: > I have Red Hat 9 installed in ext3 file systems. > I have read that Red Hat, from version 7 or 8 fully supports LFS, as well as > ext3 file systems. Is this correct? Does the kernel I have (2.4.20) which is > up2date via Red Hat Network, have LFS support enabled by default? I searched > in the kernel (via make menuconfig) the LFS support and I didn't find it... > where is it? I also have LFS problem with my Redhat 9 box. Basically, no program can read >2G files on Fat32 or properly deal with >2G files on ext3 filesystem. I do not know what to do or wait. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: locales
On Tue, Sep 30, 2003 at 12:36:42PM -0300, Herbert Georg wrote: > Hi there, > I'm new to Red Hat and I wuold like to know how to configure locales. > In Debian there was a package called locales which I configured via dpkg. > But I didn't find a package like this so I could configure it via rpm. > How do I do it in Red Hat?? /etc/sysconfig/i18n -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: KDE/DCOP problem.
On Wed, Sep 10, 2003 at 05:45:00PM -0400, Wade Chandler wrote: > You could forward Xproto over ssh to your Xserver...if on windows > there are commercial Xservers. I find that X-win32 works the best. I am using both. I use ssh for terminal apps and VNC for GUI programs. SSH is not quick enough for X-apps even though I have cable connection. For example, when I draw a picture on screen with gimp or lyx, the whole picture has to be transfered to X while VNC needs only what will be on screen. The speed difference is huge. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: KDE/DCOP problem.
On Wed, Sep 10, 2003 at 12:28:44PM -0500, Bo Peng wrote: > Is this a known problem? My google research shows that this is a KDE problem without proper solution. :-( I will let vncserver use gnome instead. Note that if I set up two X-desktops (using Alt-F7, Alt-F8 to switch between them) using two sessions of KDE, I will have the same problem. Hopefully this will be addressed in KDE4. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
KDE/DCOP problem.
Hi, Everyone, I am using redhat/KDE. I notice that whenever I use vncserver to start another session of KDE, I frequently get DCOP error message when using desktop icon or KDE toolbar. A typical error message is "KLauncher could not be reached via DCOP." Is this a known problem? Will it be better if I use gnome for my vncserver session? Is there a configuration of KDE somewhere to allow multiple sessions of KDE? Many thanks in advance. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: managing Chinese filenames created by winxp.
On Thu, Aug 28, 2003 at 03:24:38PM -0500, Bo Peng wrote: > Hello, > I have a mobile harddrive with a Fat32 partition on it so that I can > transfer files between linux and winxp systems. I notice that linux can > not display Chinese filename created by winxp system and vise vesa. I > have tried to set my locale as zh_CN.gb18030, zh_CN.gb2312, zh_CN.gbk, > zh_CN.utf8 but none of them work. The symptons are: I missed the utf8 flag when mounting the file system! The problem seems to be solved now. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
managing Chinese filenames created by winxp.
Hello, I have a mobile harddrive with a Fat32 partition on it so that I can transfer files between linux and winxp systems. I notice that linux can not display Chinese filename created by winxp system and vise vesa. I have tried to set my locale as zh_CN.gb18030, zh_CN.gb2312, zh_CN.gbk, zh_CN.utf8 but none of them work. The symptons are: 1. Linux can create/display/cp/move files with Chinese filenames but these filenames can not be displayed under winxp. 2. Linux can not display filenames created under winxp correctly. They are all shown as Could anyone tell me: 1. What kind of Chinese encoding WinXP uses? Tech documents tell me it is Unicode but I do not know if they are UTF-8 or UTF-16. 2. How can I configure my linux system to deal with such filenames? As a matter of fact, I would prefer a way to manage these files without changing my locale because none of the Chinese fonts has good-looking English characters. Many thanks in advance. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: How to make bootable cd-rom instead of floppy?
On Wed, Aug 27, 2003 at 08:02:41PM -0500, Otto Haliburton wrote: > Why do you need a bootable CD, the disk1 installation CD is a bootable > cd and is perfectly ok to use as a rescue cd. Thank you. What in my mind was a bootable floopy/cd-rom that can boot my system and make changes. It seems to be a safer way than the setup disk since I will have a working system even if I fail to recover MBR. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: How to make bootable cd-rom instead of floppy?
> Have you considered buying an USB floppy drive? This is the first time in a year that I need a floppy drive. This $20 seems to be a waste of money. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
How to make bootable cd-rom instead of floppy?
Hello, Everyone, I have linux and xp dual boot using grub. I need to reinstall xp for some reason but it seems to be difficult without a floppy drive. More specifically, the usual way (as far as I know) to do this is: 1. make a floppy boot disk using > mkbootdisk 2. re-install windows xp. 3. boot to linux with the floppy disk. 4. re-install grub. However, my machine does not have a floppy drive. (This seems to be more and more common for new machines.) Can I use other boot devices to do this? Available options are CD-RW and USB external harddrive. Many thanks in advance. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: partition 160g harddrive. fdisk fails.
On Wed, Jul 02, 2003 at 08:14:08AM +0200, Zoki wrote: > > Yes. I am using a ATA/133 controller. But redhat recognized and set up > > the controller, partitioned the harddrive with disk druid without any > *** What is the brand of your controller? > Software isn't released, it's allowed to escape. The controller came with the Maxtor 160G harddrive. I believe it is maxtor brand. See: http://www.maxtor.com/en/support/products/accessories/ultra_ata/ultra_ata_133_pci_adapter_card/index.htm Although its manual says 'windows OS required', redhat 9 can handle the controller and harddrive without problem. I do have another question. It seems that Large File Support (LFS) is not complete in redhat 9. I have huge files (>2G) from my digital camcorder, 1. transcode can not read (even 'ls' fail) files >2G from a fat32 partition. 2. 'ls' can display >2G files but transcode can only do the first 2G of the files on ext3 file system. Is ther a way to get around this? Thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: partition 160g harddrive. fdisk fails.
On Tue, Jul 01, 2003 at 08:34:13AM -0500, Bo Peng wrote: > On Tue, Jul 01, 2003 at 08:19:22AM -0500, Fluke wrote: > > On Tue, 1 Jul 2003, Bo Peng wrote: > > > When I installed my redhat 9 system, disk druid recognized my 160G > > > harddrive and made partition correctly. I am adding another harddrive > > > and trying to repartition (actually LVMing) the 160G one. However, fdisk > > > can not even display the partition table correctly. Parted can partition the disk correctly. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: mounting device
On Mon, Jun 30, 2003 at 07:25:54PM +0100, Alan Giltinan wrote: > hi all, > i am trying to mount my usb device on rh8. i know it picks up usb > devices cause my mouse is usb. > the 'fstab' file contains the /dev/usb/mnt/usb' line. > however i get a '/dev/usb is not a block device' error when i try to > mount it You did not mention what kind of usb device you have. For my mobile harddrive, I simply partition /dev/sda and mount /dev/sda1 etc. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: partition 160g harddrive. fdisk fails.
On Tue, Jul 01, 2003 at 08:19:22AM -0500, Fluke wrote: > On Tue, 1 Jul 2003, Bo Peng wrote: > > When I installed my redhat 9 system, disk druid recognized my 160G > > harddrive and made partition correctly. I am adding another harddrive > > and trying to repartition (actually LVMing) the 160G one. However, fdisk > > can not even display the partition table correctly. > Your connecting the drive to either an ATA/133 or a SATA controller, > right? > If your putting the drive on an ATA/33, ATA/66 or ATA/100 controller then > there isn't much that any OS can do to provide you access to the full > capacity of the drive. Yes. I am using a ATA/133 controller. But redhat recognized and set up the controller, partitioned the harddrive with disk druid without any problem. I think this is a problem with fdisk. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
partition 160g harddrive. fdisk fails.
Hi, everyone, When I installed my redhat 9 system, disk druid recognized my 160G harddrive and made partition correctly. I am adding another harddrive and trying to repartition (actually LVMing) the 160G one. However, fdisk can not even display the partition table correctly. 1. What disk druid used to partition the disk? parted? 2. I heard that I can not start disk druid as a program. If I use my installation disk to re-partition, will this mess up my grub settings? 3. Is there an option/patch of fdisk to overcome this? Any alternative program? Many thanks in advance. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: USB and RedHat
On Thu, Jun 05, 2003 at 08:48:07AM +1000, Matthew Richards wrote: > I am wondering if anyone can tell me what the score is with USB and > RedHat? I am using redhat 9 and have no problem with usb devices. The USB mouse and keyboard are detected and configured automatically. I can mount /dev/sda1 etc immediately after I insert my USB2 mobile harddrive (actually a cheap USB2.0 enclosure + 80G Harddrive). -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: Another Acrobat/RH 8.0 question/problem
On Tue, Jan 21, 2003 at 11:59:05AM -0800, Oscar Picasso wrote: > Hi, > I succeeded to make Acrobat reader 5 work on RH 8.0 by > using the trick of setting the LANG environment > variable. I had the same problem as you before, changing $LANG was not a good idea. I used another acrobat reader from http://www.gurulabs.com/downloads.html as someone suggested. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
hardware recommendation.
Dear List, I have around $2000 to spare and would like to set up a decent Linux workstation (mostly for statistical computing). Would anyone recommend a working hardware configuration for me? I am really afraid of possible compatibility issues since my old machine froze from time to time because of them. What currently in my mind is: 1. Dual Athlon 2400 CPUs. ($500?) 2. One quick SCSI hard drive and one spacious IDE hard drive. 3. Linux compatible Motherboard? 4. 1G memory (what kind of memory?) 5. A creative sound card. 6. A resaonbly fast video card? 7. A decent 21in CRT monitor ($500) Many thanks in advance. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
upload files to http folder using ftp.
Hello, I would like to upload file to my http server through ftp. I installed vsftpd server and have anonymous account working correctly. However, httpd uses /var/www/html and ftpd uses /var/ftp/pub. How can I let /var/ftp/pub/upload be mapped to /var/www/html/upload? I used ln -s but this does not work. (note that I will change anonymous upload later to a special account.) Many thanks in advance. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
rpm rebuilddb after reinstallation.
Hi, All, Because of a system crash, I had to rebuild the system. Since I kept /home, /var on different partitions, I was able to kept all my data. However, after reinstallation, 'apt-get update' kept telling me that I have two versions of mazilla-psm,, the reason is that I kept my previous /var/lib/rpm. I tried 'rpm -initdb' and then 'rpm -rebuilddb' but the problem still remains. What should I do? Can I remove /var/lib/rpm/Package and rebuild it? Thank you very much. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Telnet
On Tue, Dec 10, 2002 at 03:31:22AM -0500, IS Department wrote: >How do you enable Telnet on a RH 8.0 system? >Thanks use gnome-lokkit -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Multiple log-in session, GNU screen.
On Fri, Dec 06, 2002 at 05:14:03PM -0800, Todd A. Jacobs wrote: > You need to modify your /etc/X11/gdm/gdm.conf file to create a second > server. Uncomment (or create) the appropriate lines in the [server] > section so that it looks like this: > [servers] > 0=Standard > 1=Standard > and then execute /usr/sbin/gdm-safe-restart. Once you've logged out of > your X session, gdm will restart with the new configuration. This will > create a second X server bound to virtual terminal 8. You can now switch > back and forth between them with CTRL-ALT-F7 and CTRL-ALT-F8. I did what you suggested and I do have two login screen now. However, when I logged in both sessions with my account, the system 1. after one session starts xmms, the other session, when logging in, complains something like dsp is being used. This is not surprising. 2. I can start konsole in one session. When I try to do the same thing from another session, it complains: There was an error setting up inter-process communication for KDE. The message return by the system was: Could not open network socket. Please check that the dcopserver program is running. What is this error for? I will try to log in with different user name or use gnome for another session. I am using x86/redhat8/kde. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Multiple log-in session, GNU screen.
On Fri, Dec 06, 2002 at 03:38:51PM -0500, Ben Russo wrote: > If you have X-windows you can always launch multiple X-terms. > You can even have more than one session of X-windows running at a time. > The first one will be on Display 0 (CTRL-ALT-F7) > The next will be on DISPLAY 1 (CTRL-ALT-F8) > and so on. Would you point me to more detailed info about this? I now know that Ctrl-Alt-f1 ~ F7 are opened by default and my X:0 is at Ctrl-Alt-F7 but I do not know how to open another X-windows. Ultimately, when I start my machine, I would like to have 8 ttys opened. 1-6 text mode, 7-8 X-mode. I can switch between them by C-A-F1 ~ F8 and log in from X:0 and X:1 with different user name... Thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Multiple log-in session, GNU screen.
On Thu, Dec 05, 2002 at 11:01:59PM -0600, Blaine Armsterd wrote: > On Thu, 5 Dec 2002, Bo Peng wrote: > > I was looking for some way that let me have multiple independent log in > > sessions. For example, a root session in text mode, a user session in X > > mode and ways to switch between them. Logging out one of them does not > > affect others. Is there a way to do this? > I'm not sure I understand what you want. Can't you log in as a normal user > and "su" to root in a Xterm when you need to? I remember that when I install linux (especially Mandrake), I have a X-frontend but I can also view logs, commands with Alt-F2, Alf-F3 etc. What I need is similar to that but more. For example, I am constantly at work on my linux box but my wife would occasionally check her emails, doing some personal stuff on her account. Logging out and in will destroy all our applications so I would like to find a way to SWITCH between two live logged-in sessions. (If we have another desktop so that she can remotely log in to my machine, there will be no such need.) > > During the search, I find GNU screen. I was confused by its manual. What > > is this application for? Can anyone tell me a scenario that it is > > useful (than a normal terminal)? > It's not very useful under X. It's most often used for dial-up or telnet > sessions. It allows one terminal to have ten shells under it, similar to > being at a linux console. I understand, thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Multiple log-in session, GNU screen.
Hi, I was looking for some way that let me have multiple independent log in sessions. For example, a root session in text mode, a user session in X mode and ways to switch between them. Logging out one of them does not affect others. Is there a way to do this? During the search, I find GNU screen. I was confused by its manual. What is this application for? Can anyone tell me a scenario that it is useful (than a normal terminal)? Thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: redhat 8 UTF-8 problem, how to use acroread under RH8?
On Sat, Nov 30, 2002 at 05:45:35PM -0600, Bo Peng wrote: > Hi, > After I upgraded to redhat 8, I find that acroread does not work. It > gives error message like 'does not support UTF-8' and then core dump. I > searched the list archive and changed > LANG="en_US.UTF-8" > in /etc/sysconfig/i18n to > LANG="en_US.ISO-8859-1" > and acroread works OK now. Maybe I should not change the system LANG setting. How do you guys use acroread under RH8? -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Getright-like?
On Sat, Nov 30, 2002 at 09:15:04AM +0800, Edward Dekkers wrote: > > FWIW, I'm a command-line lamer and use either "curl" or "wget" for > > automatic download jobs. sirobot and its gui (name?) is a teleport like (fetch links of a html document) downloader. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
redhat 8 UTF-8 problem
Hi, After I upgraded to redhat 8, I find that acroread does not work. It gives error message like 'does not support UTF-8' and then core dump. I searched the list archive and changed LANG="en_US.UTF-8" in /etc/sysconfig/i18n to LANG="en_US.ISO-8859-1" and acroread works OK now. However, the font for my terminals behave strangely after this change. The display of mutt, mc etc are distorted. Is there a thorough solution to this problem? I am now thinking something like aliasing acroread to "set LANG="en_US.ISO-8895-1" | acroread". Thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: rpm --rebuild
On Sat, Nov 30, 2002 at 01:06:25PM -0500, R P Herrold wrote: > On Sat, 30 Nov 2002, Josep M. wrote: > > Use : "rpmbuild -ba " ,now is in rpmbuild,yes,changed without notice!%/$/ > rpmbuild "changed without notice!%/$/" ? Wouldn't life be easier if rpm says: rpm --rebuild is obsolete. Use rpmbuild instead. instead of an ice-cold error message (while there are instructions about 'rpm --rebuild' all over the internet)? -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
rpm --rebuild
Hi, I just upgraded to redhat 8.0 and need to rebuild some of my own rpms from source. However, when I use rpm --rebuild ... I got "unknown option". I could not get all '-b' options either. I checked my rpm but it is the newest version 4.1, I also installed rpm-devel, rpm-build but none of them help. What did I miss? Thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
xbiff behavior
I am sorry if this is not a core Linux question but I would like to start xbiff with "Always on Top" and "To All Desktops" and maybe "No title". Is there command line options or any other way to do it automatically? I am using RH7.3 + KDE. Thanks. -- Bo Peng -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Want to upgrade to Mozilla 1.1
> I have them all downloaded. > mozilla-1.1-0.i386.rpm > mozilla-js-debugger-1.1-0.i386.rpm > mozilla-nss-1.1-0.i386.rpm > mozilla-chat-1.1-0.i386.rpm > mozilla-mail-1.1-0.i386.rpm > mozilla-nss-devel-1.1-0.i386.rpm > mozilla-devel-1.1-0.i386.rpm > mozilla-nspr-1.1-0.i386.rpm > mozilla-psm-1.1-0.i386.rpm > mozilla-dom-inspector-1.1-0.i386.rpm > mozilla-nspr-devel-1.1-0.i386.rpm > >From the directory that contains those files I get this: > # rpm -F *.rpm > error: failed dependencies: > mozilla-nspr = 1.1-0 is needed by mozilla-1.1-0 > mozilla-nss = 1.1-0 is needed by mozilla-psm-1.1-0 > libsoftokn3.so is needed by mozilla-psm-1.1-0 > mozilla = 0.9.8 is needed by mozilla-xmlterm-0.9.8-1.ximian.2 > mozilla = 0.9.8 is needed by galeon-1.0.3-1.ximian.2 > thanks, > James John is right, you can not upgrade mozilla if you want to keep galeon since it needs mozilla 0.9.8. My upgrading was successful since I do not have galeon and xmlterm. If you are sure you do not need them. 'rpm -e' galeon and mozilla-xmlterm and you should be able to upgrade. Good luck. Bo -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Want to upgrade to Mozilla 1.1
download all of them, use rpm -F mozilla* (F means Freshen.) Bo On Wed, Sep 04, 2002 at 01:34:02PM -0400, James Pifer wrote: > I want to upgrade to Mozilla 1.1. I have all the redhat RPMs downloaded, > but when I try to do the upgrade I get some failed dependencies because > I'm using Evolution. They are: > error: failed dependencies: > mozilla = 0.9.8 is needed by mozilla-xmlterm-0.9.8-1.ximian.2 > mozilla = 0.9.8 is needed by galeon-1.0.3-1.ximian.2 > Is it possible to install Mozilla 1.1 without doing major work to > Evolution? Any suggestions? > Thanks, > James -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Free partitioning software ?
Great! Then I do not have to spend money on partition magic any more. It is huge and who need to install PM on win2k for a once a year partition change? Anyway, Reuben, I would recommend that you defrag current partition thoroughly and make sure no file exists at the end of the partition. Then, start your PC with the first Mandrake CD ... Good luck. Bo On Wed, Sep 04, 2002 at 08:13:42AM -0700, Gordon Messmer wrote: > On Tue, 2002-09-03 at 21:44, Bo Peng wrote: > > > > Anyway, Mandrake linux's partition tool diskdrake supports resize. > > Does anyone know what kind of resize it is? Can it move existing data > > around if necessary? If it can, diskdrake is much easier to use than > > parted. > IIRC, diskdrake is just a frontend for parted, so it should operate in > the same way (yes, it'll move data around if necessary). -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Free partitioning software ?
GNU parted sounds promising. Although you should be SUPER careful about its command line syntax. Anyway, Mandrake linux's partition tool diskdrake supports resize. Does anyone know what kind of resize it is? Can it move existing data around if necessary? If it can, diskdrake is much easier to use than parted. Bo On Tue, Sep 03, 2002 at 04:21:56PM -0400, Reuben D. Budiardja wrote: > Hi all, > I have a machine with Windows 2000 pro as the OS. I want to partition the hard > drive so that I can install Redhat 7.3 in it. So I want to basically resize > the window partiton and create a free space in the hard drive, and the disk > druids during Redhat Installation should do the rest. > Is there any free software that can do that? I know about Partition Magic from > PowerQuest, but it's not free I think. I, of course, don't want to loose or > corrupt any existing data. So If there a software that can do this reliably, > it would be great. > Thanks in advance for any information > Reuben D. Budiardja -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Free partitioning software ?
I read a little bit of its FAQ. If I am not mistaken, it resizes partitions by: 1. change the partition size. 2. let win2k/win98 fix/recover the remaining files. This is NOT safe at all. If I have 2.5G data on a 6G drive and resize the partition to 2G, I will lose data. Also, data on a partition is generally not continuous so even I only have 1G data, they have good chance to be at the end of the partition. Bo On Tue, Sep 03, 2002 at 05:24:27PM -0400, Andrew Judge wrote: > ranish PM http://www.ranish.com/part/ > Kinda tougher than partition magic, but handles more. > Best regards, > Andy Judge > Grove Networks Inc. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Reuben D. Budiardja > Sent: Tuesday, September 03, 2002 4:22 PM > To: [EMAIL PROTECTED] > Subject: Free partitioning software ? > Hi all, > I have a machine with Windows 2000 pro as the OS. I want to partition the > hard > drive so that I can install Redhat 7.3 in it. So I want to basically resize > the window partiton and create a free space in the hard drive, and the disk > druids during Redhat Installation should do the rest. > Is there any free software that can do that? I know about Partition Magic > from > PowerQuest, but it's not free I think. I, of course, don't want to loose or > corrupt any existing data. So If there a software that can do this reliably, > it would be great. > Thanks in advance for any information > Reuben D. Budiardja > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Free partitioning software ?
Sorry that I misunderstood the original email. My case was that I had a 6G and I bought another 80G. When partition magic (it claims that it can handle 80G HD) failed, I used win2k disk manager to make partitions for both win2k and Linux and it worked well. It is true that win2k can not resize partition. The only tool I used for this purpose is partition magic. Bo On Tue, Sep 03, 2002 at 07:37:04PM -0700, Zorrox wrote: > It sounds like the original poster needs to partition a disk that > already has data on it, and if I'm not mistaken, the Win2k disk manager > tool would probably lose everything on it. There might be a workaround, > but it'd be safer to use a tool that is set up for this sort of thing > from the start (aka Partition Manager, but free). > On the other hand, if you did it yourself on your 80g disk and it had > data and it survived, it would be interesting to hear about it. That > would be good news. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > On Behalf Of Bo Peng > Sent: Tuesday, September 03, 2002 6:03 PM > To: [EMAIL PROTECTED] > Subject: Re: Free partitioning software ? > If you are using win2k, you can use its own disk manager to make > partitiona, format etc. And then run Linux installation. It worked well > for me, even for my 80G HD. > Bo > On Tue, Sep 03, 2002 at 04:21:56PM -0400, Reuben D. Budiardja wrote: > > Hi all, > > I have a machine with Windows 2000 pro as the OS. I want to partition > > the hard > > drive so that I can install Redhat 7.3 in it. So I want to basically > resize > > the window partiton and create a free space in the hard drive, and the > disk > > druids during Redhat Installation should do the rest. > > Is there any free software that can do that? I know about Partition > > Magic from > > PowerQuest, but it's not free I think. I, of course, don't want to > loose or > > corrupt any existing data. So If there a software that can do this > reliably, > > it would be great. > > Thanks in advance for any information > > Reuben D. Budiardja > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Free partitioning software ?
If you are using win2k, you can use its own disk manager to make partitiona, format etc. And then run Linux installation. It worked well for me, even for my 80G HD. Bo On Tue, Sep 03, 2002 at 04:21:56PM -0400, Reuben D. Budiardja wrote: > Hi all, > I have a machine with Windows 2000 pro as the OS. I want to partition the hard > drive so that I can install Redhat 7.3 in it. So I want to basically resize > the window partiton and create a free space in the hard drive, and the disk > druids during Redhat Installation should do the rest. > Is there any free software that can do that? I know about Partition Magic from > PowerQuest, but it's not free I think. I, of course, don't want to loose or > corrupt any existing data. So If there a software that can do this reliably, > it would be great. > Thanks in advance for any information > Reuben D. Budiardja -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Any info about grub frontend? Re: Lilo frontend
I am using grub and would like to change the frontend too... -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: updating rpms
Try apt. It solves this kind of problem by automatically fetch and update bind-devel too. Search previous messages for apt-get. Bo On Thu, Aug 29, 2002 at 01:36:37PM +0100, Gordon McDowall wrote: > Hi > I have recently came to RedHat after using various other flavours of linux, > the main difference between what I am used to and RedHat is the use of rpms > instead of source. Here is my problem. > I installed a RedHat 7.3 machine as a cacheing DNS server, by default > bind-9.2.0 is installed. Now I have found a bind-9.2.1 rpm, but when you > try to install it using rpm -Uvh --freshen bind-9.2.1.blah.blah I get an > error > error: failed dependencies: > bind = 9.2.0 is needed by bind-devel-9.2.0-8 > Am I missing something? > Gordon -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: mozilla, netscape and CUPS
I do not quite understand the problem. Can you print from other applications like xpdf, gv? If they can, there must be something wrong with the settings of mozilla, not CUPS. Bo On Wed, Aug 28, 2002 at 07:51:15PM +0300, [EMAIL PROTECTED] wrote: > Hello > I installed RH 7.3 on someone's computer. I had some > trouble getting his canon S450 working but eventually > got it working after we changed the cable from USB to > a normal parallel port cable. However it only seemed > to work with CUPS - we tried the RH printer config tool > but had no joy with it. > He uses KDE and our problem is that we can't to print > using mozilla or netscape. I wonder if anyone has any > idea how one would get them to work with CUPS. > t.irvine > -- > Whoever thinks a faultless piece to see, > Thinks what ne'er was, nor is, nor ne'er shall be. > Alexander Pope, An Essay On Criticism. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Vaio help
It is quite possible linux does not work with fancy new hardware. Did you check the hardware compatibility list? Dual booting might solve your problem. Bo On Wed, Aug 28, 2002 at 11:30:42AM -0400, Scott wrote: > I have a new Sony Vaio GRX560 that I tried to install RH 7.3 on, but ran > into too > many problems (shh, so I put the factory restore XP home on it). > The biggest problem is the Sony Memory Stick slot, since I have a Sony > digital camera > I would like to be able to use that :) I was unable to get it working > after a couple of weeks > of playing around. I do not see it in usbview or even doing a cdrecord > --scanbus does not > show me the device. > Any ideas? > Thanks, > -Scott -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: eWeek Asks: Red Hat: Next Redmond?
I do not agree with the author. I do like redhat but I can freely switch to Mandrake, Debian, SuSE etc, if redhat begins to behave like Microsoft. Bo On Mon, Aug 26, 2002 at 03:06:32PM -0500, Dave Ihnat wrote: > Gentlefolk, > I'm sure this will get flogged to death, but it's relevant to our interests. > This is from > eWEEK News <[EMAIL PROTECTED]> > August 26, 2002 // Volume 2, Issue 125 > = > News and Views > = > Red Hat: Next Redmond? > There is growing concern in the Linux community that > industry-leader Red Hat will become the 'Microsoft of the > Linux world.' > http://eletters1.ziffdavis.com/cgi-bin10/flo?y=eRgv0Dw35u0DUm0p3M0Ae > -- > Dave Ihnat > [EMAIL PROTECTED] -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Newbie question: configure, make, make install
Simply put: ./configure.. there are more than many Unix systems and they all differ in minor ways. ./configure is a script to detect your system settings. Usually, .h files will be generated for later use. make.. compile surce files (for example .c .h ) to executable files. make install... put the executables in place. This is the usual use of those. Someone can, however, let configure, make, make install do whatever they want. :-) Bo On Mon, Aug 26, 2002 at 07:50:53AM -0700, Brian Lucas wrote: > I have been able to build several programs following the standard > configure, make, and make install programs. What do each of these do? > Is configure a compiler and how do you know what options you can specify > alongside it? For instance, configure --with-mysql. And what are the > roles of make and make install? > Thanks. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Message To Redhat.com
Yes. I have the same question. Using apt, I can update redhat system packages easily. However, when I install non-redhat packages, apt is not useful at all. Bo On Sat, Aug 24, 2002 at 11:02:36PM -0400, Hal Burgiss wrote: > On Sun, Aug 25, 2002 at 10:29:37AM +0800, Edward Dekkers wrote: > > > > Yes, up2date does this, but only for RedHat stuff. > As I understand it apt-rpm only works for repositories set up for it, > so it is not a cure-all either (but I agree totally up2date has > annoying design flaws in this regard). Does apt work on rpmfind.net > ? > -- > Hal Burgiss -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Sudden death.
On Sun, Aug 25, 2002 at 09:59:23PM -0500, Bret Hughes wrote: > On Sat, 2002-08-24 at 23:11, Bo Peng wrote: > > I just experienced another sudden death. It is when I use > > > >rpm -e kernel-BOOT-2.4.18-3 > > > > to remove the old kernel. ( I already installed kernel...-2.4.18-5) > > > > I feel really bad. > > Bo > Are you sure you are booted to the new kernel? What does uname -r say? > Bret Maybe I was making this mistake. After I restarted, I removed kernel 2.4.18-3 without problem. However, my machine died before, when I use the update agent, this program will not make such a mistake (remove a running kernel), right? Bo -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
mount iso9600
Morning, I mount redhat iso files as iso9600 on /mnt/vahalla . It is annoying that whenever I mount the file system, a file manager pops up and I have to close it by hand. Is there an option to stop this? Thanks. Bo -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: HELP!!! HELP!!! HELP!!! - HP pavilion 2.2 GHz
Could you list the hardware specifications? Your harddrive might be too big and can not use the default partition. Just maybe.. Bo On Thu, Aug 08, 2002 at 06:40:59AM -0700, julius wrote: > Five days ago I purchased a HP Pavilion xt395, supposedly identical to HP's > ze5000 series. For the past three days I have tried to install linux on this > laptop. On my first attempt, I ran the recommended installation and allowed > Red Hat 7.2 to create and format the partition. During formatting, I received > the following error message: > An error occurred mounting partition /dev/hda6 in directory /mnt/home failed > (invalid argument) > Could somebody please tell me what this message means, and how to fix the > problem. > I also tried using Partition Magic 7.0 to create ext2 partions, and got the > same result. > I would greatly appreciate any help. > Has anybody successfully installed linux on an HP pavilion ze5000 series > notebook? > -Julius -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Samba
Begin with the very basic smb.conf first. Clients like smbclient are easier to set up than smbserver. Anyway, depend on your smb.conf, you might need to run smbpasswd to set password for user.. I can send you my first working smb.conf is you still have problem. Bo On Mon, Aug 19, 2002 at 09:52:53AM -0400, [EMAIL PROTECTED] wrote: > I am trying to set up a samba server however no matter what I try I > can not seem to browse my shares from a windows machine. I can view > the Samba server in network neighborhood but if i click it (or do a > net view) I just recieve an error. On the Samba web site there were > some tests to try and all of them worked (pinging, browsing shares > from the samba server using smbclient etc.) right up until it said to > do a net view from the windows machine. I have tried different > settings in my smb.conf and so far nothing has worked. > Thanks, > Nathan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: ssh server installation problem.
Thank everyone for the help. The problem is from the firewall. I knew that I missed something very basic. I checked allow.hosts etc but ... I do not know gnome-lokkit. BTW, no manual page, online ssh-server tutorials mention firewall. :-( Thank you again. Bo On Thu, Aug 15, 2002 at 12:31:14AM -0400, Michael Fratoni wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Thursday 15 August 2002 12:18 am, Bo Peng wrote: > > I misunderstood your suggestion at first. I used "workstation" > > installation and did not notice the "firewall" and "security level" of > > my workstation. How can I chek it? How can I "allow" incoming ssh > > connection? I believe this causes the problem. > > Run /usr/sbin/lokkit and modify the rules for the firewall created at > install time. You can also run /usr/sbin/setup, and select the firewall > tool from there. You must be root to run either command. > > Hope that helps, > - -- > - -Michael > > pgp key: http://www.tuxfan.homeip.net:8080/gpgkey.txt > Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/ > - -- > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.0.6 (GNU/Linux) > Comment: For info see http://www.gnupg.org > > iEYEARECAAYFAj1bLpIACgkQn/07WoAb/SvyggCdHZH+mLy4AJTtRPzH0jn82aN4 > zv0AnjgxCwwXrP5778ibV+EzW2NIRKBa > =3Gfi > -END PGP SIGNATURE- > > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: ssh server installation problem.
Sorry. I was thinking the firewall between campus network and outside. Not my own firewall. Bo On Wed, Aug 14, 2002 at 11:16:25PM -0500, Mike Burger wrote: > I'm not sure I see, from the information given, how that applies. > > If the firewall is blocking port 22, altogether, then it doesn't matter if > you're on the same subnet, or halfway across the world. > > On Wed, 14 Aug 2002, Bo Peng wrote: > > > I tried from a server in the same subnet. No firewall problem, > > > > Bo > > > > On Wed, Aug 14, 2002 at 09:23:00PM -0500, Mike Burger wrote: > > > Your firewall is probably blocking port 22...You probably need to modify > > > the script or security level, to allow incoming ssh. > > > > > On Wed, 14 Aug 2002, Bo Peng wrote: > > > > > > I installed Redhat linux 7.3 without openssh-server. I then downloaded > > > > and installed openssh-server-3.1p1-6. However, when I started sshd via > > > > /sbin/services sshd -start, I could not connect to my machine from any > > > > other machine. I always get > > > > "FATAL: Connecting to bp6.stat.rice.edu failed: Connection Refused" > > > > > > > > I believe that my ssh-server is installed and running since I can ssh > > > > localhost. My ssh client is working OK since I can connect to other > > > > machines. I checked /etc/ssh/sshd_config (I was told that I need to > > > > change nothing.) and found nothing wrong. I also checked > > > > /etc/hosts.allow and ... > > > > > > > > Where else might I do wrong? > > > > > > > > Thanks. > > > > Bo > > > > > > > > > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: ssh server installation problem.
I misunderstood your suggestion at first. I used "workstation" installation and did not notice the "firewall" and "security level" of my workstation. How can I chek it? How can I "allow" incoming ssh connection? I believe this causes the problem. Thank you very much. Bo On Wed, Aug 14, 2002 at 09:23:00PM -0500, Mike Burger wrote: > Your firewall is probably blocking port 22...You probably need to modify > the script or security level, to allow incoming ssh. > > On Wed, 14 Aug 2002, Bo Peng wrote: > > > I installed Redhat linux 7.3 without openssh-server. I then downloaded > > and installed openssh-server-3.1p1-6. However, when I started sshd via > > /sbin/services sshd -start, I could not connect to my machine from any > > other machine. I always get > > "FATAL: Connecting to bp6.stat.rice.edu failed: Connection Refused" > > > > I believe that my ssh-server is installed and running since I can ssh > > localhost. My ssh client is working OK since I can connect to other > > machines. I checked /etc/ssh/sshd_config (I was told that I need to > > change nothing.) and found nothing wrong. I also checked > > /etc/hosts.allow and ... > > > > Where else might I do wrong? > > > > Thanks. > > Bo > > > > > > > > > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- Bo Peng Department of Statistics Rice University http://www.stat.rice.edu/~bpeng Office: DH2076, (713) 348-2863 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: ssh server installation problem.
I grab a copy of /etc/pam.d/ssh from internet, #%PAM-1.0 authrequired /lib/security/pam_pwdb.so shadow authrequired /lib/security/pam_nologin.so account required /lib/security/pam_pwdb.so passwordrequired /lib/security/pam_cracklib.so passwordrequired /lib/security/pam_pwdb.so use_authtok nullok md5 shadow session required /lib/security/pam_pwdb.so I cheked that I have /lib/security/pam_pwdb.so, I restart sshd, problem still exists. Bo On Wed, Aug 14, 2002 at 07:32:46PM -0700, Al Sparks wrote: > One other thing (besides FW settings). If you installed ssh >./configure --with-pam > then make sure you have an entry in your > /etc/pam.d > directory. That has nailed me more times than I can count. If that's > the problem, the debug process I specified in my last message should > bring that out. >=== Al > > __ > Do You Yahoo!? > HotJobs - Search Thousands of New Jobs > http://www.hotjobs.com > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: ssh server installation problem.
I followed all your instruction, sshd is running, netstat -a gives, tcp0 0 *:ssh *:* LISTEN The only problem is that "sshd -v" does not get hit. I start sshd -d then ssh localhost [root@bp6 log]# sshd -d debug1: sshd version OpenSSH_3.1p1 debug1: private host key: #0 type 0 RSA1 debug1: read PEM private key done: type RSA debug1: private host key: #1 type 1 RSA debug1: read PEM private key done: type DSA debug1: private host key: #2 type 2 DSA socket: Address family not supported by protocol debug1: Bind to port 22 on 0.0.0.0. Server listening on 0.0.0.0 port 22. Generating 768 bit RSA key. RSA key generation complete. debug1: Server will not fork when running in debugging mode. - my local host Connection from 128.42.20.87 port 33087 debug1: Client protocol version 2.0; client software version OpenSSH_3.1p1 debug1: match: OpenSSH_3.1p1 pat OpenSSH* Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-1.99-OpenSSH_3.1p1 debug1: list_hostkey_types: ssh-rsa,ssh-dss debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: client->server aes128-cbc hmac-md5 none debug1: kex: server->client aes128-cbc hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST received WARNING: /etc/ssh/moduli does not exist, using old modulus debug1: SSH2_MSG_KEX_DH_GEX_GROUP sent debug1: dh_gen_key: priv key bits set: 128/256 debug1: bits set: 501/1024 debug1: expecting SSH2_MSG_KEX_DH_GEX_INIT debug1: bits set: 490/1024 debug1: SSH2_MSG_KEX_DH_GEX_REPLY sent debug1: kex_derive_keys debug1: newkeys: mode 1 debug1: SSH2_MSG_NEWKEYS sent debug1: waiting for SSH2_MSG_NEWKEYS debug1: newkeys: mode 0 debug1: SSH2_MSG_NEWKEYS received debug1: KEX done debug1: userauth-request for user bpeng service ssh-connection method none debug1: attempt 0 failures 0 debug1: Starting up PAM with username "bpeng" debug1: PAM setting rhost to "bp6.stat.rice.edu" Failed none for bpeng from 128.42.20.87 port 33087 ssh2 --- something related to PAM --- debug1: userauth-request for user bpeng service ssh-connection method publickey debug1: attempt 1 failures 1 debug1: test whether pkalg/pkblob are acceptable debug1: temporarily_use_uid: 500/500 (e=0) debug1: trying public key file /home/bpeng/.ssh/authorized_keys debug1: restore_uid debug1: temporarily_use_uid: 500/500 (e=0) debug1: trying public key file /home/bpeng/.ssh/authorized_keys2 debug1: restore_uid Failed publickey for bpeng from 128.42.20.87 port 33087 ssh2 debug1: userauth-request for user bpeng service ssh-connection method keyboard-interactive debug1: attempt 2 failures 2 debug1: keyboard-interactive devs debug1: auth2_challenge: user=bpeng devs= debug1: kbdint_alloc: devices '' Failed keyboard-interactive for bpeng from 128.42.20.87 port 33087 ssh2 debug1: userauth-request for user bpeng service ssh-connection method password debug1: attempt 3 failures 3 debug1: PAM Password authentication accepted for user "bpeng" Accepted password for bpeng from 128.42.20.87 port 33087 ssh2 debug1: Entering interactive session for SSH2. Then, I try from another machine There is NO debug info on the server side. Can you see what is going on? Thanks. Bo On Wed, Aug 14, 2002 at 07:25:47PM -0700, Al Sparks wrote: > First, you said you >/sbin/service sshd -start > Probably a typo, but you're not supposed to have "-" in front. > Assuming that was done correctly, try >$ ps -aux | egrep sshd > and make sure there's a sshd process running. > Also try >$ netstat -a > and make sure there's something "LISTEN"ing on the "*:ssh" port. > If all that is true, kill sshd. Then, probably as root, run ># sshd -d > and on the client end run >$ ssh -v bp6.stat.rice.edu > and see what the output is on both machines. If the daemon on > bp6.stat.rice.edu is getting "hit", then you'll see output from > the debug sshd. On the client side, you'll also see debug output. > That may (but not always) give you some clues. > One other thing to check before doing all that is /var/log/messages to > see if the daemon you were running was giving any errors. >=== Al > --- Bo Peng <[EMAIL PROTECTED]> wrote: > > I installed Redhat linux 7.3 without openssh-server. I then downloaded > > and installed openssh-server-3.1p1-6. However, when I started sshd via > > /sbin/services sshd -start, I could not connect to my machine from any > > other machine. I always get > > "FATAL: Connecting to bp6.stat.rice.edu failed: Connection Refused" > > > > I believe that my ssh-server is installed and running since I can ssh > > localhost. My ssh client is working OK since I can connect to other > > machines. I checke
Re: ssh server installation problem.
I tried from a server in the same subnet. No firewall problem, Bo On Wed, Aug 14, 2002 at 09:23:00PM -0500, Mike Burger wrote: > Your firewall is probably blocking port 22...You probably need to modify > the script or security level, to allow incoming ssh. > On Wed, 14 Aug 2002, Bo Peng wrote: > > I installed Redhat linux 7.3 without openssh-server. I then downloaded > > and installed openssh-server-3.1p1-6. However, when I started sshd via > > /sbin/services sshd -start, I could not connect to my machine from any > > other machine. I always get > > "FATAL: Connecting to bp6.stat.rice.edu failed: Connection Refused" > > > > I believe that my ssh-server is installed and running since I can ssh > > localhost. My ssh client is working OK since I can connect to other > > machines. I checked /etc/ssh/sshd_config (I was told that I need to > > change nothing.) and found nothing wrong. I also checked > > /etc/hosts.allow and ... > > > > Where else might I do wrong? > > > > Thanks. > > Bo -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
ssh server installation problem.
I installed Redhat linux 7.3 without openssh-server. I then downloaded and installed openssh-server-3.1p1-6. However, when I started sshd via /sbin/services sshd -start, I could not connect to my machine from any other machine. I always get "FATAL: Connecting to bp6.stat.rice.edu failed: Connection Refused" I believe that my ssh-server is installed and running since I can ssh localhost. My ssh client is working OK since I can connect to other machines. I checked /etc/ssh/sshd_config (I was told that I need to change nothing.) and found nothing wrong. I also checked /etc/hosts.allow and ... Where else might I do wrong? Thanks. Bo -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list