- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftpd lang setting
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 12:44 AM
11-20-2003 12:44 AM
ftpd lang setting
I have a pb with ftp session :
when I do a ftp to server (UX 10.20, ftp Version 1.7.212.3), with "dir" command, I have date of files in french instead of english...
when I connect directly on system and do a ls -l command it is in english.
Help me to set the ftp lang in english.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 12:48 AM
11-20-2003 12:48 AM
Re: ftpd lang setting
If this solves the issue, set the variables in the startup file for inetd.
Also checkout your files in /etc/rc.config.d for those variables... All files there are run for every startup script, so it is very likely your problem is caused there...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 01:15 AM
11-20-2003 01:15 AM
Re: ftpd lang setting
I think that your problem is about LANG setting in /etc/rc.config.d/LANG file.
What does this file contain? Anything about the french language? If yes, you should uncomment lines about it and retry ftp.
I hope this helps you.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 02:26 AM
11-20-2003 02:26 AM
Re: ftpd lang setting
par50h:/etc/rc.config.d> cat LANG
#!/sbin/sh
# @(#) $Revision: 78.1 $
# Language preference. See lang(5), hpnls(5)
#
# LANG: Locale name
#
# Note: if using the default C locale, many commands will execute faster if
# LANG is not set.
#
#export LANG=fr_FR.iso88591
#export LANG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 02:48 AM
11-20-2003 02:48 AM
Re: ftpd lang setting
Then you should verify the following things:
1. Is there anything about LANG settings into $HOME/.profile of user that is executing ftp operations?
2. You can try to see /etc/profile too, also if it has anything about LANG settings you should supplied to change it and then a reboot.
Let me know results above.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 02:51 AM
11-20-2003 02:51 AM
Re: ftpd lang setting
3. in the same shell:
# export LANG=C
# inetd -k
# inetd
and then try a new ftp to this system.
Regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 03:02 AM
11-20-2003 03:02 AM
Re: ftpd lang setting
in /etc/rc.config.d/LANG
export LANG=C
and also inetd -k
Thanks a lot.