D1V1N3
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
Hallo! Einer meiner Vorgänger, bzw. dessen Lieferant hat folgendes Script geschrieben. Es wurde in das .profile eingebaut und sieht wie folgt aus: 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 | #!/usr/bin/ksh
# [mkuser_start]
# this part ist maintained automatically by mkuser.pl
# place your additional lines after the ending paragraph
export TF_MANID="SPED"
if [ -f /usr/local/LBASE/etc/${TF_MANID}_profile.tf ] ; then
. /usr/local/LBASE/etc/${TF_MANID}_profile.tf
else
echo ".. /usr/local/LBASE/etc/${TF_MANID}_profile.tf NOT FOUND!"
fi
# [mkuser_end]
#test -z "$PROFILEREAD" && . /etc/profile || true
# Most applications support several languages for their output.
# To make use of this feature, simply uncomment one of the lines below or
# add your own one (see /usr/share/locale/locale.alias for more codes)
# This overwrites the system default set in /etc/sysconfig/language
# in the variable RC_LANG.
#
#export LANG=de_DE.UTF-8 # uncomment this line for German output
#export LANG=fr_FR.UTF-8 # uncomment this line for French output
#export LANG=es_ES.UTF-8 # uncomment this line for Spanish output
# Some people don't like fortune. If you uncomment the following lines,
# you will have a fortune each time you log in ;-)
#if [ -x /usr/bin/fortune ] ; then
# echo
# /usr/bin/fortune
# echo
#fi
# Diese Eintraege muessen bei Verwendung von trans-flow
# ins USER-Profile eingetragen werden, um das Menue aufrufen zu koennen
set -o vi
. /fibu/rewe/env_fibu.dat
. ${TRFL}/etc/tforaenv_fibu.sh
tty -s
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
Folgende Felermeldung wird uns nun via Mail zugeschickt:
| stty: standard input: Invalid argument
|
Ich selbst bin noch blutiger Shellscript Anfänger. Ich konnte aber in Erfahrung bringen, dass wenn man ein tty command über .profile aufruft, der Standard error output in /dev/null verschoben werden soll. Müsste ich nun folgenden part des Scripts von:
| tty -s
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
auf: | tty -s 2>/dev/null
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
ändern? Besten Dank für eure Hilfe!
|
rklm
Projektleitung
Anmeldungsdatum: 16. Oktober 2011
Beiträge: 13175
|
D1V1N3 schrieb:
Einer meiner Vorgänger, bzw. dessen Lieferant hat folgendes Script geschrieben. Es wurde in das .profile eingebaut und sieht wie folgt aus:
Etwas kraus und ohne ordentliche Einrückung, aber gut.
Folgende Felermeldung wird uns nun via Mail zugeschickt:
| stty: standard input: Invalid argument
|
Ich selbst bin noch blutiger Shellscript Anfänger. Ich konnte aber in Erfahrung bringen, dass wenn man ein tty command über .profile aufruft, der Standard error output in /dev/null verschoben werden soll.
Wer behauptet das? Das ist nur sinnvoll, wenn man Fehler ignorieren will. Das scheint mir in diesem Fall aber nicht sinnvoll zu sein.
Müsste ich nun folgenden part des Scripts von:
| tty -s
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
auf: | tty -s 2>/dev/null
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
ändern?
Nein, das bringt nix. Erst mal sollten wir ermitteln, woher die Fehlermeldung kommt. Nach der Formatierung der Meldung und dem, was ich selbst hinbekomme, kommt die Fehlermeldung von dem Kommando stty und nicht tty . Ersteres Kommando taucht aber in dem Skript gar nicht auf. Also musst Du vermutlich ganz woanders suchen, z.B. in /d1/group/sped/kunden/sh/tf_fibu.ksh . Schick das doch mal. Wenn Du experimentierfreudig bist, dann kannst Du in das .ksh-Skript auch mal oben (also z.B. als zweite Zeile) diese Zeile einbauen und die Ausgabe beim Aufruf hier in einen Codeblock posten: Übrigens kann man den ursprünglichen Codeschnipsel auch einfacher so schreiben: | tty -s && exec /d1/group/sped/kunden/sh/tf_fibu.ksh
|
Es ist eine totale Unart, ein Kommando auszuführen und dann den Exit-Status in $? in einem if -Statement auszuwerten. Mindestens sollte man dann dies machen: | if tty -s; then
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
Aber im aktuellen Fall gibt es keine Notwendigkeit dafür, da es ja auch keinen else -Zweig gibt.
|
D1V1N3
(Themenstarter)
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
Danke schon mal an rklm für die super Antwort. Ist wirklich spritze, dass dies hier ein Forum ist, bei welchem Mann noch gute Hilfe bekommt. rklm schrieb: D1V1N3 schrieb: Ich selbst bin noch blutiger Shellscript Anfänger. Ich konnte aber in Erfahrung bringen, dass wenn man ein tty command über .profile aufruft, der Standard error output in /dev/null verschoben werden soll.
Wer behauptet das? Das ist nur sinnvoll, wenn man Fehler ignorieren will. Das scheint mir in diesem Fall aber nicht sinnvoll zu sein.
Dachte ich eigentlich auch. Hab das hier http://stackoverflow.com/questions/2536531/invoking-shell-from-java-it-complaints-stty-standard-input-invalid-argument gefunden. Müsste ich nun folgenden part des Scripts von:
| tty -s
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
auf: | tty -s 2>/dev/null
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
|
ändern?
Nein, das bringt nix. Erst mal sollten wir ermitteln, woher die Fehlermeldung kommt. Nach der Formatierung der Meldung und dem, was ich selbst hinbekomme, kommt die Fehlermeldung von dem Kommando stty und nicht tty . Ersteres Kommando taucht aber in dem Skript gar nicht auf. Also musst Du vermutlich ganz woanders suchen, z.B. in /d1/group/sped/kunden/sh/tf_fibu.ksh . Schick das doch mal.
Sehr gerne. Da steht nur folgendes drinn:
$TRFL/kunden/sh_zrw/tf_fibu.ksh
Daraufhin habe ich gesucht und das hier gefunden:
/d1/group/osm/bin/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh_zrw/save1011/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh_zrw/tf_fibu.ksh
/d1/group/sped/kunden/sh/tf_fibu.ksh
/d1/group/sped/kunden/sh_zrw/save1011/tf_fibu.ksh
/d1/group/sped/kunden/sh_zrw/tf_fibu.ksh
/d1/group/sped/kunden_20140218/sh/tf_fibu.ksh
/d1/group/sped/kunden_20140218/sh_zrw/tf_fibu.ksh
/home/fibu/rewe/tf_fibu.ksh Vermutlich ist jetzt das hier von Interesse: /d1/group/sped/kunden/sh_zrw/tf_fibu.ksh 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206 | #!/bin/ksh
# tf_fibu.ksh
# rewi 24.10.03 Serverdruck erg▒nzt
# rewi 28.12.03 Kurse f▒r USA erg▒nzt
# rewi 25.08.04 Kurse f▒r Hongkong und Singapure erg▒nzt
# huwi 13.09.04 Aufruf oracle env.
# huwi 13.09.04 Verzeichnis angepasse sh -> sh_zrw, sql->sql_zrw
# rewi 17.09.04 Umstellung Kreditlimit auf tf-Standard
# rewi 30.12.04 Men▒punkt 28 Chile Beleg-Import erg▒nzt
# rewi 31.08.05 Men▒punkt 32 Configfile f▒r Verarbeitungsprotokolle ▒ndern
# rewi 26.03.09 Kore-Abschluss mit User spedzrw starten - neues script kore_abschluss.sh
# damit Verbuchung nicht gest▒rt wird
# rewi 19.09.10 Punkt 18 Statement of Account 19 BAB-Versand entfernt und V und VA erg▒nzt
# stmo 20.12.11 Punkt N Nummernkreis zur▒cksetzen Dossiernummer
# rbo 28.10.13 Aufruf Testsystem auf Server r01vm040ux012 umgestellt - rlogin durch ssh ersetzt
#rewi 27.03.2013 Profile auskommentiert
#. /etc/profile
. ${TRFL}/etc/tfosenv.sh
. ${TRFL}/etc/tforaenv_fibu.sh
# FIBU-Men▒ Firmenname (Anmerkung DiViNe: Zensiert)
####
# Environment setzen
##
. /usr/local/lib/env_fibu.dat D
####
# Warten auf die Enter-Taste
##
weiter () {
echo
echo ".... weiter mit Enter "
read
}
####
# Hauptmenu
##
while :
do
EING=X
clear
${TFECHO} "==============================================================================="
${TFECHO} "| FIBU-Menu | SIS FIBU | 1.12 |"
${TFECHO} "==============================================================================="
echo "\t 1... Adressen von t-f in FIBU "
echo "\t 2... Belege von t-f in FIBU "
echo "\t 3... Abz▒ge von FIBU in trans-flow "
echo "\t 12.. W▒hrungskurse verteilen"
echo "\t 13.. Kreditlimit verteilen"
echo "\t 14.. Zollbelege einlesen"
echo "\t " # 15.. Zoll fuer Fr.(Anmerkung DiViNe: Zensiert)"
echo "\t " # 16.. Codetabelle Warten"
echo "\t "
echo "\t 30.. Beleg-Men▒ Produktion V... Vorbereiten MATFIT"
echo "\t 32.. V-Protokolle e-mail.Adr ▒ndern VA.. Vorb. alle Firmen/Systeme"
echo "\t " # 50.. SPEDAS Schweiz "
echo "\t 40.. Ueberleitung KORE " # 51.. SPEDAS France"
echo "\t 41.. Filterdatum Dossierrechnung " # 52.. SPEDAS England"
echo "\t D... Dossiermonate setzen MATFIT"
echo "\t L... Lohnbuchungen verbuchen"
echo "\t 45.. Abgrenzung Phase I "
echo "\t E... Beenden " # S... Serverdruck FIBU"
echo "\t T... Test-Server FIBU-Menu"
echo "\t N... Nr.kreise Dossnr r▒cksetzen"
echo "\t Auswahl : \c"
read EING
clear
case $EING in
'1') echo "Adressen▒bernahme"
. /etc/profile
cd /d1/group/osm/bin
$TRFL/kunden/sh_zrw/out_adrk.sh fibu
cd $FIBU
db.sh
weiter
# cd /fibu/sql
# sqlplus fibu45/fibu45 @kredlim_k1.sql
# weiter
;;
'2') ${TRFL}/kunden/sh_zrw/sfibl00a.sh
weiter
clear
cd $FIBU
t.sh
# lp -ddfx5_1.zrw $SQR/output/sfibl001.lis
weiter;;
'3') $TRFL/kunden/sh_zrw/abzug.sh
weiter;;
'10') cd /home2/acu
tfdruck02.sh
weiter;;
'11') dccstat ;;
'12')
echo "Verteilen Kurse"
cd ${TRFL}/kunden/sh_zrw
cron_kurse.ksh
weiter ;;
'13') cd ${TRFL}/kunden/sh_zrw
echo "Verteilen Kreditlimit auf t-f Spedition gestartet"
# ext_kredlim.sh MATFI1 MATFI1
skrl_out.sh
echo "Verteilen Kreditlimit auf t-f Spedition beendet"
weiter;;
'14') cd /home2/acu
get_itx_zoll
echo "Zollbelege einlesen abgeschlossen"
weiter;;
'15') cd /home2/acu
sh e-hps ;;
'16') cd /home2/acu
codetab.sh
weiter;;
'17') /home/oper/admin/prot.ksh
weiter ;;
'18_alt') su - stofac;;
'19_alt') $TRFL/kunden/sh_zrw/bab_versand.sh;;
'25') $TRFL/kunden/sh_zrw/adrums.sh
weiter;;
'26') $TRFL/kunden/sh_zrw/vmfbel.sh
weiter;;
'28') $TRFL/kunden/sh_zrw/sbeld950.sh
weiter;;
'30') $TRFL/kunden/sh/tf_beleg.ksh
weiter ;;
'32') $TRFL/kunden/sh_zrw/vi_kurzanleitung.sh
vi $TRFL/kunden/sh_zrw/log_zrw.txt;;
'40') su - spedzrw -c $TRFL/kunden/sh_zrw/skord001.sh
for KOBEWEFILE in $TRFL/sqr/output/KOBEWE*
do
cp $KOBEWEFILE $DAT
SAVEFILE=`echo $KOBEWEFILE | sed -e 's/KOBEWE/ok_KOBEWE/'`
if [ $? -eq 0 ]
then
mv $KOBEWEFILE $SAVEFILE
fi
done
$FIBU/kov00400.sh
weiter ;;
'41') sqlplus $TF_UID @$TRFL/kunden/sql_zrw/set_filter_date.sql
weiter;;
'42') sqlplus $TF_UID @$TRFL/kunden/sql_zrw/set_dossier_nr.sql
weiter;;
'43') $TRFL/kunden/sh_zrw/ktrausw.sh
weiter;;
'45') $TRFL/kunden/sh_zrw/abgr_phase_1_mat.sh
weiter;;
'48') cd /home2/acu
mri.sh ;;
'D') sqlplus $TF_UID @$TRFL/kunden/sql_zrw/upd_sykp.sql
weiter;;
'N') sqlplus $TF_UID@$SID_TF @$TRFL/kunden/sql_zrw/upd_snum.sql
weiter;;
'L') cd $DAT
cp rzwfibu.txt FIBEWE.00
clear
# fehlerhafte M-Saetze entfernen
# grep -v "^M" rzwfibu.txt > FIBEWE.00
cd $FIBU
echo "Zuerst wurde rzwfibu.txt in FIBEWE.00"
echo "im Verzeichnis /fibu/rewe/dat umbenannt !"
weiter
t.sh
cd /fibu/rewe/dat
mv rzwfibu.txt /fibu/rewe/datsav/rzwfibu-`date +%Y%m%d-%T`.txt
echo "rzwfibu.txt wurde geloescht"
weiter;;
['B','b']) cd /fibu/sql
op_bewertok.sh
weiter;;
['S','s']) cd $FIBU
listexe.sh
weiter ;;
['T','t']) ssh r01vm040ux012
weiter ;;
['V','v']) $TRFL/kunden/sh_zrw/sktrd001.sh;;
'VA') $TRFL/kunden/sh_zrw/cron_nkalk.sh 1
weiter ;;
'va') $TRFL/kunden/sh_zrw/cron_nkalk.sh 1
weiter ;;
'50') cd /home2/spedas
su - FZG
weiter ;;
'51') cd /home2/spedas
TERM=vt100;export TERM
spedasf.sh ;;
'52') cd /home2/spedas/
TERM=vt100;export TERM
spedase.sh
weiter ;;
'!') ksh ;;
['E','e']) exit 0 ;;
'*') echo "Falsche Eingabe"
esac
done
exit 0
|
Wenn Du experimentierfreudig bist, dann kannst Du in das .ksh-Skript auch mal oben (also z.B. als zweite Zeile) diese Zeile einbauen und die Ausgabe beim Aufruf hier in einen Codeblock posten:
Da meine Probezeit noch nicht durch ist und ich noch nicht weiss, ob ich es jederzeit ausführen kann, lieber nicht bzw noch nicht ☺
|
rklm
Projektleitung
Anmeldungsdatum: 16. Oktober 2011
Beiträge: 13175
|
D1V1N3 schrieb: Danke schon mal an rklm für die super Antwort. Ist wirklich spritze, dass dies hier ein Forum ist, bei welchem Mann noch gute Hilfe bekommt.
👍
rklm schrieb: D1V1N3 schrieb: Ich selbst bin noch blutiger Shellscript Anfänger. Ich konnte aber in Erfahrung bringen, dass wenn man ein tty command über .profile aufruft, der Standard error output in /dev/null verschoben werden soll.
Wer behauptet das? Das ist nur sinnvoll, wenn man Fehler ignorieren will. Das scheint mir in diesem Fall aber nicht sinnvoll zu sein.
Dachte ich eigentlich auch. Hab das hier http://stackoverflow.com/questions/2536531/invoking-shell-from-java-it-complaints-stty-standard-input-invalid-argument gefunden.
Da geht es aber darum, dass ein Java-Programm eine Shell startet. Das ist erst mal ein ganz anderes Thema.
Nein, das bringt nix. Erst mal sollten wir ermitteln, woher die Fehlermeldung kommt. Nach der Formatierung der Meldung und dem, was ich selbst hinbekomme, kommt die Fehlermeldung von dem Kommando stty und nicht tty . Ersteres Kommando taucht aber in dem Skript gar nicht auf. Also musst Du vermutlich ganz woanders suchen, z.B. in /d1/group/sped/kunden/sh/tf_fibu.ksh . Schick das doch mal.
Sehr gerne. Da steht nur folgendes drinn:
Ich kann nirgendwo ein stty entdecken. Besser eingrenzen könnte man es wirklich, wenn die Skripte mit Debug-Ausgabe ausgeführt würden. Dann könnte man genau sehen, welches Kommando die Meldung absetzt.
$TRFL/kunden/sh_zrw/tf_fibu.ksh
Daraufhin habe ich gesucht und das hier gefunden:
/d1/group/osm/bin/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh_zrw/save1011/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh_zrw/tf_fibu.ksh
/d1/group/sped/kunden/sh/tf_fibu.ksh
/d1/group/sped/kunden/sh_zrw/save1011/tf_fibu.ksh
/d1/group/sped/kunden/sh_zrw/tf_fibu.ksh
/d1/group/sped/kunden_20140218/sh/tf_fibu.ksh
/d1/group/sped/kunden_20140218/sh_zrw/tf_fibu.ksh
/home/fibu/rewe/tf_fibu.ksh
Das bedeutet wohl, dass für jeden Kunden ein eigenes Skript abgelegt ist. Oder was repräsentiert $TRFL?
Vermutlich ist jetzt das hier von Interesse: /d1/group/sped/kunden/sh_zrw/tf_fibu.ksh
Dort ist auch kein stty zu sehen. Vielleicht in /usr/local/lib/env_fibu.dat ?
Wenn Du experimentierfreudig bist, dann kannst Du in das .ksh-Skript auch mal oben (also z.B. als zweite Zeile) diese Zeile einbauen und die Ausgabe beim Aufruf hier in einen Codeblock posten:
Da meine Probezeit noch nicht durch ist und ich noch nicht weiss, ob ich es jederzeit ausführen kann, lieber nicht bzw noch nicht ☺
😬 Ich baue oft in meine Skripte dies hier am Anfang ein: | test -n "$DEBUG" && set -x
|
Dann kann man Debugging einfach einschalten, indem man die Umgebungsvariable setzt, und das bleibt dann auch erhalten, wenn ein Skript ein anderes aufruft: $ export DEBUG=y
$ irgend-ein-script.sh Man kann die Umgebungsvariable sogar nur für einen Aufruf setzen: $ DEBUG=y irgend-ein-script.sh Wenn alles Suchen nicht hilft, dann kannst Du so eine Liste der Dateien generieren, die stty enthalten: Alternativ nicht im Root-Verzeichnis suchen sondern gezielter, z.B. in /d1/group/sped .
|
D1V1N3
(Themenstarter)
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
Hallo! Ich konnte nun die Erlaubnis bekommen, das Script auszuführen. Habe es kopiert und mittels ausgeführt. Dies hier ist der output:
+ TF_MANID=SPED
+ export TF_MANID
+ [ -f /usr/local/LBASE/etc/SPED_profile.tf ]
+ . /usr/local/LBASE/etc/SPED_profile.tf
+ OLD_ORACLE_HOME=/opt/oracle/product/10gR2/client
+ OLD_TRFL=''
+ TF_ROOT=/d1
+ export TF_ROOT
+ TF_GROUP=/d1/group
+ export TF_GROUP
+ TRFL=/d1/group/sped
+ export TRFL
+ ORACLE_SID=MATPRT
+ export ORACLE_SID
+ DFUE=/home/oper/dfu_daten
+ export DFUE
+ DFUELG=/home/oper/dfuelg
+ export DFUELG
+ OSM=/d1/group/osm
+ export OSM
+ OSMDIR=/d1/group/osm/osmt
+ export OSMDIR
+ OSMSPOOL=/var/spool/osm
+ export OSMSPOOL
+ OSMTLOG=/d1/group/osm/osmt/log
+ export OSMTLOG
+ OSM_IN=/d1/group/osm/DFUE/IN
+ export OSM_IN
+ OSM_OUT=/d1/group/osm/DFUE/OUT
+ export OSM_OUT
+ SQR=/d1/group/sped/sqr
+ export SQR
+ TF_HOSTNAME=r01vm040ux012
+ export TF_HOSTNAME
+ umask 002
+ unset VISUAL
+ TF_CLTYP=NONE
+ export TF_CLTYP
+ ORACLE_HOME=/opt/oracle/product/10gR2/client
+ ORACLE_BASE=/opt/oracle
+ [ -d /opt/oracle/product/10gR2/client/ocommon/nls/admin/data ]
+ [ -d /opt/oracle/product/10gR2/client/ocommon/nls/admin/data32 ]
+ [ -d /opt/oracle/product/10gR2/client/ocommon/nls/admin/data ]
+ [ -d /d1/oraclnt9/ocommon/nls/admin/data ]
+ [ -d /opt/oracle/product/10gR2/client/nls/data ]
+ ORA_NLS10=/opt/oracle/product/10gR2/client/nls/data
+ export ORA_NLS10
+ NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
+ NLS_DATE_FORMAT=DD.MM.YYYY
+ EDITOR=vi
+ export ORACLE_HOME ORACLE_BASE NLS_LANG NLS_DATE_FORMAT EDITOR
+ TWO_TASK=MATPRT
+ export TWO_TASK
+ TNS_ADMIN=/opt/oracle/product/10gR2/client/network/admin
+ export TNS_ADMIN
+ ORA_ROLLB_LARGE=RB_BIG
+ EPC_DISABLED=TRUE
+ export ORA_ROLLB_LARGE EPC_DISABLE
+ [ ! -z /opt/oracle/product/10gR2/client ]
+ sed s!:/opt/oracle/product/10gR2/client/lib!!g
+ echo
+ LD_LIBRARY_PATH=''
+ LD_LIBRARY_PATH=/opt/oracle/product/10gR2/client/lib
+ [ -d /opt/oracle/product/10gR2/client/lib32 ]
+ LD_LIBRARY_PATH=/opt/oracle/product/10gR2/client/lib:/opt/oracle/product/10gR2/client/lib32
+ [ -d /d1/oraclnt9/lib ]
+ export LD_LIBRARY_PATH
+ [ ! -z /opt/oracle/product/10gR2/client ]
+ sed s!:/opt/oracle/product/10gR2/client/bin!!g
+ echo /sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin
+ export PATH
+ SQRDIR=/d1/sqr/ora/workbench/bin
+ [ -d /d1/sqr/ora/bin ]
+ SQRDIR=/d1/sqr/ora/bin
+ export SQRDIR
+ BRIO_HOME=/d1/sqr
+ export BRIO_HOME
+ LANG=en_US.ISO-8859-1
+ export LANG
+ [ ! -z '' ]
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin:/d1/group/sped/binsrv
+ grep '[:]\.[:]*'
+ echo /sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin:/d1/group/sped/binsrv
+ TMPPATH=''
+ [ -z '' ]
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin:/d1/group/sped/binsrv:.
+ TF_PRINTER=''
+ TF_TABLESPACE=TS_USERS
+ [ root '=' osm ]
+ export PATH TF_PRINTER TF_TABLESPACE
+ tty -s
+ testutf8_ex -w
*********************** ERROR - character encoding problem ********
r01vm040ux012 encoding is ISO-8859-1 according to locale (LANG).
Terminal encoding UTF-8 is different.
To avoid data corruption change terminal encoding to ISO-8859-1 and reconnect.
*********************** ERROR - inconsistent UTF-8 settings ******************************
To avoid data corruption check settings of locale charmap, terminal encoding and NLS_LANG.
Settings must match application server encoding
******************************************************************************************
+ TFECHO=echo
+ [ -x /bin/echo ]
+ TFECHO=/bin/echo
+ /bin/echo -e
+ [ -x /bin/echo -a -z '' ]
+ TFECHO='/bin/echo -e'
+ echo -e
+ [ -z '' ]
+ TFECHO='echo -e'
+ echo '\n'
+ [ -z '' ]
+ TFECHO=echo
+ export TFECHO
+ hostname
+ HOST=r01vm040ux012
+ uname
+ TFOS=Linux
+ export HOST TFOS
+ basename /d1/group/sped
+ TF_USER=ZensiertVonD1V1N3
+ TF_USERPWD=ZensiertVonD1V1N3
+ TF_UID=sped/sped
+ export TF_UID
+ TF_HOME=/d1/group/sped
+ TF_DRUCKER=hpedv
+ TF_TEMP=/tmp
+ export TF_HOME TF_DRUCKER TF_TEMP TF_USER TF_USERPWD
+ id -ur
+ 2> /dev/null
+ [ 0 '=' 0 ]
+ whoami
+ hostname
+ PS1='root@r01vm040ux012:$PWD # '
+ export PS1
+ alias '..=cd ..'
+ alias l='ls -l'
+ alias sql='sqlplus ${TF_UID}'
+ set -o vi
+ [ ! -z /bin/bash ]
+ basename /bin/bash
+ [ bash '=' -ksh -a Linux '=' Linux ]
+ [ -x /d1/group/sped/kunden/etc/profile.tf ]
+ set -o vi
+ . /fibu/rewe/env_fibu.dat
+ FIBUBASIS=/fibu/rewe
+ FIBULAND=dt
+ NLS_DATE_FORMAT=DD.MM.YYYY
+ NLS_NUMERIC_CHARACTERS=.,
+ export PATH OTERM ORACLE_CTYPE LANGUAGE
+ export NLS_LANG NLS_DATE_FORMAT NLS_NUMERIC_CHARACTERS
+ DR=ep2oper
+ export DR
+ FIBU_LANG=D
+ export FIBU_LANG
+ FIBU=/fibu/rewe/rewe_fmx
+ REWE_FMX=/fibu/rewe/rewe_fmx
+ REWE_REP=/fibu/rewe/rewe_rep
+ KORE=/fibu/rewe/rewe_fmx
+ export KORE
+ KOST=/fibu/rewe/rewe_fmx
+ export KOST
+ ANBU=/fibu/rewe/rewe_fmx
+ ANBUN=/fibu/rewe/rewe_fmx
+ LISTE=/fibu/rewe/liste
+ TOOLS=/fibu/rewe/tools
+ TSTDRUCK=/fibu/rewe/tstdruck
+ DAT=/fibu/rewe/dat
+ DATSAV=/fibu/rewe/datsav
+ NACHT=/fibu/rewe/dt/fibu/nacht
+ LOGDIR=/fibu/rewe/log
+ FIRMA='trans flow DEMO '
+ export FIRMA FIBU REWE_FMX REWE_REP FIBU_LANG DAT LISTE DATSAV NACHT LOGDIR TOOLS REP ANBU ANBUN
+ export TSTDRUCK
+ umask 002
+ stty erase $'\b'
+ . /d1/group/sped/etc/tforaenv_fibu.sh
+ ORACLE_SID=MATFIT
+ TWO_TASK=MATFIT
+ SID_TF=MATPRT
+ SID_SIS=MATFIT
+ TF_UID=sped/sped
+ TFSPED=sped/sped
+ TFUSER=user1/user1
+ TF_HOSTNAME=r01vm040ux012
+ export ORACLE_SID TWO_TASK TF_UID TFSPED TFUSER TF_HOSTNAME
+ export SID_TF SID_SIS
+ tty -s
+ [ 0 -eq 0 ]
+ echo
+ exec /d1/group/sped/kunden/sh/tf_fibu.ksh
===============================================================================
| FIBU-Menu | SIS FIBU | 1.12 |
===============================================================================
1... Adressen von t-f in FIBU
2... Belege von t-f in FIBU
3... Abz▒ge von FIBU in trans-flow
12.. W▒hrungskurse verteilen
13.. Kreditlimit verteilen
14.. Zollbelege einlesen
30.. Beleg-Men▒ Produktion V... Vorbereiten MATFIT
32.. V-Protokolle e-mail.Adr ▒ndern VA.. Vorb. alle Firmen/Systeme
40.. Ueberleitung KORE
41.. Filterdatum Dossierrechnung
D... Dossiermonate setzen MATFIT
L... Lohnbuchungen verbuchen
45.. Abgrenzung Phase I
E... Beenden
T... Test-Server FIBU-Menu
N... Nr.kreise Dossnr r▒cksetzen
Auswahl : Ich bin ab heute bis am DI in den Ferien. Somit kann ich leider erst dann wieder antworten.
|
rklm
Projektleitung
Anmeldungsdatum: 16. Oktober 2011
Beiträge: 13175
|
D1V1N3 schrieb:
Ich konnte nun die Erlaubnis bekommen, das Script auszuführen. Habe es kopiert und mittels ausgeführt. Dies hier ist der output:
Na, da hast Du ja Deinen stty -Aufruf gefunden! + stty erase $'\b' Ich konnte allerdings die selbe Fehlermeldung nicht reproduzieren: $ stty erase $'\b' </dev/null
stty: standard input: Inappropriate ioctl for device
$ stty erase $'\b' <&-
stty: standard input: Bad file descriptor Im Wesentlichen wird die Backspace-Taste gesetzt, wenn ich das richtig sehe. Die könnte bei der Fehlermeldung ggf. nicht richtig funktionieren. Vielleicht gibt es ein Problem mit dem Terminal, in dem das läuft. Im Moment habe ich keine Idee. Seltsam ist aber, dass die Variable TERM explizit gesetzt wird (in einem Deiner Postings). Und dann ist da noch die Fehlermeldung über ein falsches Encoding. Versuch es doch vielleicht mal mit der Lösung aus der Fehlermeldung: | export LANG=en_US.ISO-8859-1
|
|
D1V1N3
(Themenstarter)
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
Hi rklm Danke dass du dir die Mühe gemacht hast, mir zu helfen. Hab erst jetzt gesehen, dass du noch einen Vorschlag gemacht hast! Was meinst du damit?
export LANG=en_US.ISO-8859-1 Soll ich dies in die erste Zeile des .profile hinein schreiben?
|
rklm
Projektleitung
Anmeldungsdatum: 16. Oktober 2011
Beiträge: 13175
|
D1V1N3 schrieb:
Danke dass du dir die Mühe gemacht hast, mir zu helfen. Hab erst jetzt gesehen, dass du noch einen Vorschlag gemacht hast!
Latenzen, Latenzen!
Was meinst du damit?
export LANG=en_US.ISO-8859-1 Soll ich dies in die erste Zeile des .profile hinein schreiben?
Nein, erst mal würde ich das in einer Shell machen, in der Du dann das Skript ausprobierst. Oder wird das alles immer beim Einloggen automatisch ausgeführt? Dann in der ~.profile oder ~/.bash_login des Benutzers.
|
D1V1N3
(Themenstarter)
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
rklm schrieb: D1V1N3 schrieb:
Danke dass du dir die Mühe gemacht hast, mir zu helfen. Hab erst jetzt gesehen, dass du noch einen Vorschlag gemacht hast!
Latenzen, Latenzen!
Hihi... Sry, wie gesagt, leider übersehen. 😢 Was meinst du damit?
export LANG=en_US.ISO-8859-1 Soll ich dies in die erste Zeile des .profile hinein schreiben?
Nein, erst mal würde ich das in einer Shell machen, in der Du dann das Skript ausprobierst. Oder wird das alles immer beim Einloggen automatisch ausgeführt? Dann in der ~.profile oder ~/.bash_login des Benutzers.
Ja, das ist ein ganzes wirr-warr:
Das ~.profile ruft das auf: #!/usr/bin/ksh
#------------------------------------------------------
# (C) transflow EDV Consulting- und Vertriebs GmbH
#------------------------------------------------------
# [mkuser_start]
# this part ist maintained automatically by mkuser.pl
# place your additional lines after the ending paragraph
export TF_MANID="SPED"
if [ -f /usr/local/LBASE/etc/${TF_MANID}_profile.tf ] ; then
. /usr/local/LBASE/etc/${TF_MANID}_profile.tf
else
echo ".. /usr/local/LBASE/etc/${TF_MANID}_profile.tf NOT FOUND!"
fi
# [mkuser_end]
#test -z "$PROFILEREAD" && . /etc/profile || true
# Most applications support several languages for their output.
# To make use of this feature, simply uncomment one of the lines below or
# add your own one (see /usr/share/locale/locale.alias for more codes)
# This overwrites the system default set in /etc/sysconfig/language
# in the variable RC_LANG.
#
#export LANG=de_DE.UTF-8 # uncomment this line for German output
#export LANG=fr_FR.UTF-8 # uncomment this line for French output
#export LANG=es_ES.UTF-8 # uncomment this line for Spanish output
# Some people don't like fortune. If you uncomment the following lines,
# you will have a fortune each time you log in ;-)
#if [ -x /usr/bin/fortune ] ; then
# echo
# /usr/bin/fortune
# echo
#fi
# Diese Eintraege muessen bei Verwendung von trans-flow
# ins USER-Profile eingetragen werden, um das Menue aufrufen zu koennen
set -o vi
. /fibu/rewe/env_fibu.dat
. ${TRFL}/etc/tforaenv_fibu.sh
tty -s
if [ $? -eq 0 ]
then
echo
exec /d1/group/sped/kunden/sh/tf_fibu.ksh
fi
Das Script in der zweit letzten Zeile (/d1/group/sped/kunden/sh/tf_fibu.ksh), beinhaltet nur dies:
$TRFL/kunden/sh_zrw/tf_fibu.ksh Mittels einem find konnte ich dann folgende Scripte ausmachen: find / -name "tf_fibu.ksh"
/d1/group/osm/bin/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh_zrw/save1011/tf_fibu.ksh
/d1/group/sped/kunden_20140530/sh_zrw/tf_fibu.ksh
/d1/group/sped/kunden/sh/tf_fibu.ksh
/d1/group/sped/kunden/sh_zrw/save1011/tf_fibu.ksh
/d1/group/sped/kunden/sh_zrw/tf_fibu.ksh
/d1/group/sped/kunden_20140218/sh/tf_fibu.ksh
/d1/group/sped/kunden_20140218/sh_zrw/tf_fibu.ksh
/home/fibu/rewe/tf_fibu.ksh
das hat mich auf unser Scritpt /d1/group/sped/kunden/sh_zrw/tf_fibu.ksh gebracht: #!/bin/ksh
# tf_fibu.ksh
# rewi 24.10.03 Serverdruck erg▒nzt
# rewi 28.12.03 Kurse f▒r USA erg▒nzt
# rewi 25.08.04 Kurse f▒r Hongkong und Singapure erg▒nzt
# huwi 13.09.04 Aufruf oracle env.
# huwi 13.09.04 Verzeichnis angepasse sh -> sh_zrw, sql->sql_zrw
# rewi 17.09.04 Umstellung Kreditlimit auf tf-Standard
# rewi 30.12.04 Men▒punkt 28 Chile Beleg-Import erg▒nzt
# rewi 31.08.05 Men▒punkt 32 Configfile f▒r Verarbeitungsprotokolle ▒ndern
# rewi 26.03.09 Kore-Abschluss mit User spedzrw starten - neues script kore_abschluss.sh
# damit Verbuchung nicht gest▒rt wird
# rewi 19.09.10 Punkt 18 Statement of Account 19 BAB-Versand entfernt und V und VA erg▒nzt
# stmo 20.12.11 Punkt N Nummernkreis zur▒cksetzen Dossiernummer
# rbo 28.10.13 Aufruf Testsystem auf Server r01vm040ux012 umgestellt - rlogin durch ssh ersetzt
#rewi 27.03.2013 Profile auskommentiert
#. /etc/profile
. ${TRFL}/etc/tfosenv.sh
. ${TRFL}/etc/tforaenv_fibu.sh
# FIBU-Men▒ Firmenname (Anmerkung DiViNe: Zensiert)
####
# Environment setzen
##
. /usr/local/lib/env_fibu.dat D
####
# Warten auf die Enter-Taste
##
weiter () {
echo
echo ".... weiter mit Enter "
read
}
####
# Hauptmenu
##
while :
do
EING=X
clear
${TFECHO} "==============================================================================="
${TFECHO} "| FIBU-Menu | SIS FIBU | 1.12 |"
${TFECHO} "==============================================================================="
echo "\t 1... Adressen von t-f in FIBU "
echo "\t 2... Belege von t-f in FIBU "
echo "\t 3... Abz▒ge von FIBU in trans-flow "
echo "\t 12.. W▒hrungskurse verteilen"
echo "\t 13.. Kreditlimit verteilen"
echo "\t 14.. Zollbelege einlesen"
echo "\t " # 15.. Zoll fuer Fr.(Anmerkung DiViNe: Zensiert)"
echo "\t " # 16.. Codetabelle Warten"
echo "\t "
echo "\t 30.. Beleg-Men▒ Produktion V... Vorbereiten MATFIT"
echo "\t 32.. V-Protokolle e-mail.Adr ▒ndern VA.. Vorb. alle Firmen/Systeme"
echo "\t " # 50.. SPEDAS Schweiz "
echo "\t 40.. Ueberleitung KORE " # 51.. SPEDAS France"
echo "\t 41.. Filterdatum Dossierrechnung " # 52.. SPEDAS England"
echo "\t D... Dossiermonate setzen MATFIT"
echo "\t L... Lohnbuchungen verbuchen"
echo "\t 45.. Abgrenzung Phase I "
echo "\t E... Beenden " # S... Serverdruck FIBU"
echo "\t T... Test-Server FIBU-Menu"
echo "\t N... Nr.kreise Dossnr r▒cksetzen"
echo "\t Auswahl : \c"
read EING
clear
case $EING in
'1') echo "Adressen▒bernahme"
. /etc/profile
cd /d1/group/osm/bin
$TRFL/kunden/sh_zrw/out_adrk.sh fibu
cd $FIBU
db.sh
weiter
# cd /fibu/sql
# sqlplus fibu45/fibu45 @kredlim_k1.sql
# weiter
;;
'2') ${TRFL}/kunden/sh_zrw/sfibl00a.sh
weiter
clear
cd $FIBU
t.sh
# lp -ddfx5_1.zrw $SQR/output/sfibl001.lis
weiter;;
'3') $TRFL/kunden/sh_zrw/abzug.sh
weiter;;
'10') cd /home2/acu
tfdruck02.sh
weiter;;
'11') dccstat ;;
'12')
echo "Verteilen Kurse"
cd ${TRFL}/kunden/sh_zrw
cron_kurse.ksh
weiter ;;
'13') cd ${TRFL}/kunden/sh_zrw
echo "Verteilen Kreditlimit auf t-f Spedition gestartet"
# ext_kredlim.sh MATFI1 MATFI1
skrl_out.sh
echo "Verteilen Kreditlimit auf t-f Spedition beendet"
weiter;;
'14') cd /home2/acu
get_itx_zoll
echo "Zollbelege einlesen abgeschlossen"
weiter;;
'15') cd /home2/acu
sh e-hps ;;
'16') cd /home2/acu
codetab.sh
weiter;;
'17') /home/oper/admin/prot.ksh
weiter ;;
'18_alt') su - stofac;;
'19_alt') $TRFL/kunden/sh_zrw/bab_versand.sh;;
'25') $TRFL/kunden/sh_zrw/adrums.sh
weiter;;
'26') $TRFL/kunden/sh_zrw/vmfbel.sh
weiter;;
'28') $TRFL/kunden/sh_zrw/sbeld950.sh
weiter;;
'30') $TRFL/kunden/sh/tf_beleg.ksh
weiter ;;
'32') $TRFL/kunden/sh_zrw/vi_kurzanleitung.sh
vi $TRFL/kunden/sh_zrw/log_zrw.txt;;
'40') su - spedzrw -c $TRFL/kunden/sh_zrw/skord001.sh
for KOBEWEFILE in $TRFL/sqr/output/KOBEWE*
do
cp $KOBEWEFILE $DAT
SAVEFILE=`echo $KOBEWEFILE | sed -e 's/KOBEWE/ok_KOBEWE/'`
if [ $? -eq 0 ]
then
mv $KOBEWEFILE $SAVEFILE
fi
done
$FIBU/kov00400.sh
weiter ;;
'41') sqlplus $TF_UID @$TRFL/kunden/sql_zrw/set_filter_date.sql
weiter;;
'42') sqlplus $TF_UID @$TRFL/kunden/sql_zrw/set_dossier_nr.sql
weiter;;
'43') $TRFL/kunden/sh_zrw/ktrausw.sh
weiter;;
'45') $TRFL/kunden/sh_zrw/abgr_phase_1_mat.sh
weiter;;
'48') cd /home2/acu
mri.sh ;;
'D') sqlplus $TF_UID @$TRFL/kunden/sql_zrw/upd_sykp.sql
weiter;;
'N') sqlplus $TF_UID@$SID_TF @$TRFL/kunden/sql_zrw/upd_snum.sql
weiter;;
'L') cd $DAT
cp rzwfibu.txt FIBEWE.00
clear
# fehlerhafte M-Saetze entfernen
# grep -v "^M" rzwfibu.txt > FIBEWE.00
cd $FIBU
echo "Zuerst wurde rzwfibu.txt in FIBEWE.00"
echo "im Verzeichnis /fibu/rewe/dat umbenannt !"
weiter
t.sh
cd /fibu/rewe/dat
mv rzwfibu.txt /fibu/rewe/datsav/rzwfibu-`date +%Y%m%d-%T`.txt
echo "rzwfibu.txt wurde geloescht"
weiter;;
['B','b']) cd /fibu/sql
op_bewertok.sh
weiter;;
['S','s']) cd $FIBU
listexe.sh
weiter ;;
['T','t']) ssh r01vm040ux012
weiter ;;
['V','v']) $TRFL/kunden/sh_zrw/sktrd001.sh;;
'VA') $TRFL/kunden/sh_zrw/cron_nkalk.sh 1
weiter ;;
'va') $TRFL/kunden/sh_zrw/cron_nkalk.sh 1
weiter ;;
'50') cd /home2/spedas
su - FZG
weiter ;;
'51') cd /home2/spedas
TERM=vt100;export TERM
spedasf.sh ;;
'52') cd /home2/spedas/
TERM=vt100;export TERM
spedase.sh
weiter ;;
'!') ksh ;;
['E','e']) exit 0 ;;
'*') echo "Falsche Eingabe"
esac
done
exit 0 In welchem Script, an welcher Stelle soll ich dies hier nun eintragen?
export LANG=en_US.ISO-8859-1 Bin mir nicht mehr sicher, ob ich das Script im Debug modus als root gestartet habe. Ich habe es deshalb nochmals als User "fibu" aufgerufen: + TF_MANID=SPED
+ export TF_MANID
+ [ -f /usr/local/LBASE/etc/SPED_profile.tf ]
+ . /usr/local/LBASE/etc/SPED_profile.tf
+ OLD_ORACLE_HOME=/opt/oracle/product/10gR2/client
+ OLD_TRFL=''
+ TF_ROOT=/d1
+ export TF_ROOT
+ TF_GROUP=/d1/group
+ export TF_GROUP
+ TRFL=/d1/group/sped
+ export TRFL
+ ORACLE_SID=MATPRT
+ export ORACLE_SID
+ DFUE=/home/oper/dfu_daten
+ export DFUE
+ DFUELG=/home/oper/dfuelg
+ export DFUELG
+ OSM=/d1/group/osm
+ export OSM
+ OSMDIR=/d1/group/osm/osmt
+ export OSMDIR
+ OSMSPOOL=/var/spool/osm
+ export OSMSPOOL
+ OSMTLOG=/d1/group/osm/osmt/log
+ export OSMTLOG
+ OSM_IN=/d1/group/osm/DFUE/IN
+ export OSM_IN
+ OSM_OUT=/d1/group/osm/DFUE/OUT
+ export OSM_OUT
+ SQR=/d1/group/sped/sqr
+ export SQR
+ TF_HOSTNAME=r01vm040ux012
+ export TF_HOSTNAME
+ umask 002
+ unset VISUAL
+ TF_CLTYP=NONE
+ export TF_CLTYP
+ ORACLE_HOME=/opt/oracle/product/10gR2/client
+ ORACLE_BASE=/opt/oracle
+ [ -d /opt/oracle/product/10gR2/client/ocommon/nls/admin/data ]
+ [ -d /opt/oracle/product/10gR2/client/ocommon/nls/admin/data32 ]
+ [ -d /opt/oracle/product/10gR2/client/ocommon/nls/admin/data ]
+ [ -d /d1/oraclnt9/ocommon/nls/admin/data ]
+ [ -d /opt/oracle/product/10gR2/client/nls/data ]
+ ORA_NLS10=/opt/oracle/product/10gR2/client/nls/data
+ export ORA_NLS10
+ NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
+ NLS_DATE_FORMAT=DD.MM.YYYY
+ EDITOR=vi
+ export ORACLE_HOME ORACLE_BASE NLS_LANG NLS_DATE_FORMAT EDITOR
+ TWO_TASK=MATPRT
+ export TWO_TASK
+ TNS_ADMIN=/opt/oracle/product/10gR2/client/network/admin
+ export TNS_ADMIN
+ ORA_ROLLB_LARGE=RB_BIG
+ EPC_DISABLED=TRUE
+ export ORA_ROLLB_LARGE EPC_DISABLE
+ [ ! -z /opt/oracle/product/10gR2/client ]
+ sed s!:/opt/oracle/product/10gR2/client/lib!!g
+ echo
+ LD_LIBRARY_PATH=''
+ LD_LIBRARY_PATH=/opt/oracle/product/10gR2/client/lib
+ [ -d /opt/oracle/product/10gR2/client/lib32 ]
+ LD_LIBRARY_PATH=/opt/oracle/product/10gR2/client/lib:/opt/oracle/product/10gR2/client/lib32
+ [ -d /d1/oraclnt9/lib ]
+ export LD_LIBRARY_PATH
+ [ ! -z /opt/oracle/product/10gR2/client ]
+ sed s!:/opt/oracle/product/10gR2/client/bin!!g
+ echo /sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin
+ export PATH
+ SQRDIR=/d1/sqr/ora/workbench/bin
+ [ -d /d1/sqr/ora/bin ]
+ SQRDIR=/d1/sqr/ora/bin
+ export SQRDIR
+ BRIO_HOME=/d1/sqr
+ export BRIO_HOME
+ LANG=en_US.ISO-8859-1
+ export LANG
+ [ ! -z '' ]
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin:/d1/group/sped/binsrv
+ grep '[:]\.[:]*'
+ echo /sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin:/d1/group/sped/binsrv
+ TMPPATH=''
+ [ -z '' ]
+ PATH=/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/var/cfengine/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/NX/bin:/opt/oracle/product/10gR2/client/bin:/d1/group/sped/binsrv:.
+ TF_PRINTER=''
+ TF_TABLESPACE=TS_USERS
+ [ root '=' osm ]
+ export PATH TF_PRINTER TF_TABLESPACE
+ tty -s
+ testutf8_ex -w
*********************** ERROR - character encoding problem ********
r01vm040ux012 encoding is ISO-8859-1 according to locale (LANG).
Terminal encoding UTF-8 is different.
To avoid data corruption change terminal encoding to ISO-8859-1 and reconnect.
*********************** ERROR - inconsistent UTF-8 settings ******************************
To avoid data corruption check settings of locale charmap, terminal encoding and NLS_LANG.
Settings must match application server encoding
******************************************************************************************
+ TFECHO=echo
+ [ -x /bin/echo ]
+ TFECHO=/bin/echo
+ /bin/echo -e
+ [ -x /bin/echo -a -z '' ]
+ TFECHO='/bin/echo -e'
+ echo -e
+ [ -z '' ]
+ TFECHO='echo -e'
+ echo '\n'
+ [ -z '' ]
+ TFECHO=echo
+ export TFECHO
+ hostname
+ HOST=r01vm040ux12
+ uname
+ TFOS=Linux
+ export HOST TFOS
+ basename /d1/group/sped
+ TF_USER=sped
+ TF_USERPWD=sped
+ TF_UID=sped/sped
+ export TF_UID
+ TF_HOME=/d1/group/sped
+ TF_DRUCKER=hpedv
+ TF_TEMP=/tmp
+ export TF_HOME TF_DRUCKER TF_TEMP TF_USER TF_USERPWD
+ id -ur
+ 2> /dev/null
+ [ 0 '=' 0 ]
+ whoami
+ hostname
+ PS1='root@r01vm040ux12:$PWD # '
+ export PS1
+ alias '..=cd ..'
+ alias l='ls -l'
+ alias sql='sqlplus ${TF_UID}'
+ set -o vi
+ [ ! -z /bin/bash ]
+ basename /bin/bash
+ [ bash '=' -ksh -a Linux '=' Linux ]
+ [ -x /d1/group/sped/kunden/etc/profile.tf ]
+ set -o vi
+ . /fibu/rewe/env_fibu.dat
+ FIBUBASIS=/fibu/rewe
+ FIBULAND=dt
+ NLS_DATE_FORMAT=DD.MM.YYYY
+ NLS_NUMERIC_CHARACTERS=.,
+ export PATH OTERM ORACLE_CTYPE LANGUAGE
+ export NLS_LANG NLS_DATE_FORMAT NLS_NUMERIC_CHARACTERS
+ DR=ep2oper
+ export DR
+ FIBU_LANG=D
+ export FIBU_LANG
+ FIBU=/fibu/rewe/rewe_fmx
+ REWE_FMX=/fibu/rewe/rewe_fmx
+ REWE_REP=/fibu/rewe/rewe_rep
+ KORE=/fibu/rewe/rewe_fmx
+ export KORE
+ KOST=/fibu/rewe/rewe_fmx
+ export KOST
+ ANBU=/fibu/rewe/rewe_fmx
+ ANBUN=/fibu/rewe/rewe_fmx
+ LISTE=/fibu/rewe/liste
+ TOOLS=/fibu/rewe/tools
+ TSTDRUCK=/fibu/rewe/tstdruck
+ DAT=/fibu/rewe/dat
+ DATSAV=/fibu/rewe/datsav
+ NACHT=/fibu/rewe/dt/fibu/nacht
+ LOGDIR=/fibu/rewe/log
+ FIRMA='trans flow DEMO '
+ export FIRMA FIBU REWE_FMX REWE_REP FIBU_LANG DAT LISTE DATSAV NACHT LOGDIR TOOLS REP ANBU ANBUN
+ export TSTDRUCK
+ umask 002
+ stty erase $'\b'
+ . /d1/group/sped/etc/tforaenv_fibu.sh
+ ORACLE_SID=MATFIT
+ TWO_TASK=MATFIT
+ SID_TF=MATPRT
+ SID_SIS=MATFIT
+ TF_UID=sped/sped
+ TFSPED=sped/sped
+ TFUSER=user1/user1
+ TF_HOSTNAME=r01vm040ux12
+ export ORACLE_SID TWO_TASK TF_UID TFSPED TFUSER TF_HOSTNAME
+ export SID_TF SID_SIS
+ tty -s
+ [ 0 -eq 0 ]
+ echo
+ exec /d1/group/sped/kunden/sh/tf_fibu.ksh
===============================================================================
| FIBU-Menu | SIS FIBU | 1.12 |
===============================================================================
1... Adressen von t-f in FIBU
2... Belege von t-f in FIBU
3... Abz▒ge von FIBU in trans-flow
12.. W▒hrungskurse verteilen
13.. Kreditlimit verteilen
14.. Zollbelege einlesen
30.. Beleg-Men▒ Produktion V... Vorbereiten MATFIT
32.. V-Protokolle e-mail.Adr ▒ndern VA.. Vorb. alle Firmen/Systeme
40.. Ueberleitung KORE
41.. Filterdatum Dossierrechnung
D... Dossiermonate setzen MATFIT
L... Lohnbuchungen verbuchen
45.. Abgrenzung Phase I
E... Beenden
T... Test-Server FIBU-Menu
N... Nr.kreise Dossnr r▒cksetzen
Auswahl :
|
rklm
Projektleitung
Anmeldungsdatum: 16. Oktober 2011
Beiträge: 13175
|
Hm. Die Sache mit export LANG=en_US.ISO-8859-1 scheint nichts gebracht zu haben. Er beschwert sich ja immer noch über das "terminal encoding". Nimm das doch mal wieder raus und schau mal bei den Einstellungen Deines graphischen Terminals. Ich weiß jetzt nicht, was für ein DE Du da hast, aber irgendeine Möglichkeit wird es da doch vermutlich geben. Oder läuft das alles im Textmodus? Dann müsstest Du mal schauen, was für die ttys eingestellt ist. Möglicherweise hilft ein Blick in /etc/default/console-setup, wenn es die Datei gibt. Ansonsten kannst Du auf die Suche gehen: | sudo -v
sudo fgrep -rilZ tty /etc | sudo xargs -r0 fgrep -i encod
|
Oder so ähnlich.
|
D1V1N3
(Themenstarter)
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
export LANG=en_US.ISO-8859-1 habe ich nicht ausgeführt und auch nicht in das Script eingefügt. Wenn ich dies tun soll, dann bitte eine Info in welchem Script und an welcher Stelle. Die Datei /etc/default/console-setup existiert nicht. fgrep -rilZ tty /etc | sudo xargs -r0 fgrep -i encod =
fgrep: /etc/cups/pstotiff.convs: No such file or directory
fgrep: /etc/cups/pstotiff.types: No such file or directory
/etc/csh.cshrc: # Enable editing in multibyte encodings for the locales
/etc/services:pnet-enc 7798/tcp # Propel Encoder port [Leif_Hedstrom]
/etc/services:pnet-enc 7798/udp # Propel Encoder port [Leif_Hedstrom]
/etc/services:# Bjorn_Lantz Bjorn Lantz mailto:bjorn.lantz&encode.se
/etc/sysconfig/console:# Encoding used for output of non-ascii characters.
/etc/sysconfig/console:CONSOLE_ENCODING="UTF-8"
/etc/ssl/openssl.cnf:# DER hex encoding of an extension: beware experts only!
/etc/joe/jpicorc:-guess_non_utf8 Allow guess of non-UTF-8 file encoding in a UTF-8 locale.
/etc/joe/jpicorc: -guess_utf8 Allow guess of UTF-8 file encoding in non-UTF-8 locale.
/etc/joe/jpicorc: -encoding name
/etc/joe/rjoerc:-guess_non_utf8 Allow guess of non-UTF-8 file encoding in a UTF-8 locale.
/etc/joe/rjoerc: -guess_utf8 Allow guess of UTF-8 file encoding in non-UTF-8 locale.
/etc/joe/rjoerc: -encoding name
/etc/joe/jmacsrc:-guess_non_utf8 Allow guess of non-UTF-8 file encoding in a UTF-8 locale.
/etc/joe/jmacsrc: -guess_utf8 Allow guess of UTF-8 file encoding in non-UTF-8 locale.
/etc/joe/jmacsrc: -encoding name
/etc/joe/joerc:-guess_non_utf8 Allow guess of non-UTF-8 file encoding in a UTF-8 locale.
/etc/joe/joerc: -guess_utf8 Allow guess of UTF-8 file encoding in non-UTF-8 locale.
/etc/joe/joerc: -encoding name
/etc/joe/jstarrc:-guess_non_utf8 Allow guess of non-UTF-8 file encoding in a UTF-8 locale.
/etc/joe/jstarrc: -guess_utf8 Allow guess of UTF-8 file encoding in non-UTF-8 locale.
/etc/joe/jstarrc: -encoding name
/etc/joe/lang/fr.po:"Content-Transfer-Encoding: 8bit\n"
/etc/joe/lang/fr.po:msgid "E Encoding "
/etc/joe/lang/fr.po:msgid "%s encoding assumed for this file"
/etc/joe/lang/de.po:"Content-Transfer-Encoding: 8bit\n"
/etc/joe/lang/de.po:msgid "E Encoding "
/etc/joe/lang/de.po:msgid "%s encoding assumed for this file"
/etc/joe/lang/ru.po:"Content-Transfer-Encoding: 8bit\n"
/etc/joe/lang/ru.po:msgid "E Encoding "
/etc/joe/lang/ru.po:msgid "%s encoding assumed for this file"
/etc/joe/jicerc.ru:-guess_non_utf8 Allow guess of non-UTF-8 file encoding in a UTF-8 locale.
/etc/joe/jicerc.ru: -guess_utf8 Allow guess of UTF-8 file encoding in non-UTF-8 locale.
/etc/joe/jicerc.ru: -encoding name
Binary file /etc/alternatives/jre_1.6.0_exports/sasl-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-rmi.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/sasl.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-ldap.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-ldap-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jdbc-stdext-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-cos.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-rmi-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jaas.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jdbc-stdext-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jaas-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-rmi-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jaas-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jdbc-stdext-3.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-cos-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-ldap-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jndi-cos-1.6.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/sasl-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_1.6.0_exports/jdbc-stdext.jar matches
Binary file /etc/alternatives/vim matches
Binary file /etc/alternatives/jre_1.6.0/bin/unpack200 matches
Binary file /etc/alternatives/jre_1.6.0/lib/ext/dtfj.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/ext/gskikm.jar matches
/etc/alternatives/jre_1.6.0/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_Invalid2ByteEncoding "* decodeUTF8CharN - invalid 2 byte encoding (0x%x)"
/etc/alternatives/jre_1.6.0/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_Invalid3ByteEncoding "* decodeUTF8CharN - invalid 3 byte encoding (0x%x)"
/etc/alternatives/jre_1.6.0/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_EncodingTooLarge "* decodeUTF8CharN - invalid encoding (0x%x)"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:MAWT 2 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Entry " >AwtDataTransferer::LCIDToTextEncoding() lcid=%f"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:MAWT 4 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Exit1 " <Complete retval=%p, encoding=%s"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:JAVA 2 1 7 N Tr_Process_getDefaultEncoding_Entry " >Process_getDefaultEncoding_Entry(): env=0x%p"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:JAVA 4 1 7 N Tr_Process_getDefaultEncoding_Exit " <Process_getDefaultEncoding_Exit(): env=0x%p exc=0x%p"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:JAVA 2 1 7 N Tr_Process_getCodepageType_Entry " >Process_getCodepageType_Entry(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception1 "* Process_getCodepageType_Exception1(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception2 "* Process_getCodepageType_Exception2(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception3 "* Process_getCodepageType_Exception3(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:Audio 1 1 1 N Tr_Java_com_sun_media_sound_SimpleInputDevice_nGetFormats_Exception5 "* Java_com_sun_media_sound_SimpleInputDevice_nGetFormats_Exception5: Unknown encoding %d."
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:AWT 2 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Entry " >AwtDataTransferer::LCIDToTextEncoding() lcid=%f"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:AWT 4 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Exit1 " <Complete retval=%p, encoding=%s"
/etc/alternatives/jre_1.6.0/lib/TraceFormat.dat:FONTMANAGER 8 9 1 N Tr_cmaps_makeNativeToUnicodeArray_1 " cmaps: makeNativeToUnicodeArray(encodingID = %d)"
Binary file /etc/alternatives/jre_1.6.0/lib/ibmorbapi.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/ibmcertpathprovider.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/ibmjgssprovider.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/deploy.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/charsets.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/rt.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/xml.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/libjava.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/libjpkcs11.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libj9bcv24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libj9prt24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libj9vm24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libj9jit24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/j9ddr.dat matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libjclscar_24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libj9dmp24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/default/libj9jextract.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/libunpack.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/motif21/libmawt.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/libcmm.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9bcv24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9prt24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9vm24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9jit24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/j9ddr.dat matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libjclscar_24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9dmp24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9gc24.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/compressedrefs/libj9jextract.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/libdeploy.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/amd64/libfontmanager.so matches
Binary file /etc/alternatives/jre_1.6.0/lib/ibmcertpathfw.jar matches
Binary file /etc/alternatives/jre_1.6.0/lib/ibmpkcs.jar matches
Binary file /etc/alternatives/jre_exports/sasl-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-rmi.jar matches
Binary file /etc/alternatives/jre_exports/sasl.jar matches
Binary file /etc/alternatives/jre_exports/jndi-ldap.jar matches
Binary file /etc/alternatives/jre_exports/jndi-ldap-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi.jar matches
Binary file /etc/alternatives/jre_exports/jdbc-stdext-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-cos.jar matches
Binary file /etc/alternatives/jre_exports/jndi-rmi-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jaas.jar matches
Binary file /etc/alternatives/jre_exports/jdbc-stdext-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jaas-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-rmi-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/jaas-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jdbc-stdext-3.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-cos-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-ldap-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/jndi-cos-1.6.0.jar matches
Binary file /etc/alternatives/jre_exports/sasl-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_exports/jdbc-stdext.jar matches
Binary file /etc/alternatives/jre/bin/unpack200 matches
Binary file /etc/alternatives/jre/lib/ext/dtfj.jar matches
Binary file /etc/alternatives/jre/lib/ext/gskikm.jar matches
/etc/alternatives/jre/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_Invalid2ByteEncoding "* decodeUTF8CharN - invalid 2 byte encoding (0x%x)"
/etc/alternatives/jre/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_Invalid3ByteEncoding "* decodeUTF8CharN - invalid 3 byte encoding (0x%x)"
/etc/alternatives/jre/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_EncodingTooLarge "* decodeUTF8CharN - invalid encoding (0x%x)"
/etc/alternatives/jre/lib/TraceFormat.dat:MAWT 2 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Entry " >AwtDataTransferer::LCIDToTextEncoding() lcid=%f"
/etc/alternatives/jre/lib/TraceFormat.dat:MAWT 4 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Exit1 " <Complete retval=%p, encoding=%s"
/etc/alternatives/jre/lib/TraceFormat.dat:JAVA 2 1 7 N Tr_Process_getDefaultEncoding_Entry " >Process_getDefaultEncoding_Entry(): env=0x%p"
/etc/alternatives/jre/lib/TraceFormat.dat:JAVA 4 1 7 N Tr_Process_getDefaultEncoding_Exit " <Process_getDefaultEncoding_Exit(): env=0x%p exc=0x%p"
/etc/alternatives/jre/lib/TraceFormat.dat:JAVA 2 1 7 N Tr_Process_getCodepageType_Entry " >Process_getCodepageType_Entry(): env=0x%p encoding=0x%p"
/etc/alternatives/jre/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception1 "* Process_getCodepageType_Exception1(): env=0x%p encoding=0x%p"
/etc/alternatives/jre/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception2 "* Process_getCodepageType_Exception2(): env=0x%p encoding=0x%p"
/etc/alternatives/jre/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception3 "* Process_getCodepageType_Exception3(): env=0x%p encoding=0x%p"
/etc/alternatives/jre/lib/TraceFormat.dat:Audio 1 1 1 N Tr_Java_com_sun_media_sound_SimpleInputDevice_nGetFormats_Exception5 "* Java_com_sun_media_sound_SimpleInputDevice_nGetFormats_Exception5: Unknown encoding %d."
/etc/alternatives/jre/lib/TraceFormat.dat:AWT 2 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Entry " >AwtDataTransferer::LCIDToTextEncoding() lcid=%f"
/etc/alternatives/jre/lib/TraceFormat.dat:AWT 4 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Exit1 " <Complete retval=%p, encoding=%s"
/etc/alternatives/jre/lib/TraceFormat.dat:FONTMANAGER 8 9 1 N Tr_cmaps_makeNativeToUnicodeArray_1 " cmaps: makeNativeToUnicodeArray(encodingID = %d)"
Binary file /etc/alternatives/jre/lib/ibmorbapi.jar matches
Binary file /etc/alternatives/jre/lib/ibmcertpathprovider.jar matches
Binary file /etc/alternatives/jre/lib/ibmjgssprovider.jar matches
Binary file /etc/alternatives/jre/lib/deploy.jar matches
Binary file /etc/alternatives/jre/lib/charsets.jar matches
Binary file /etc/alternatives/jre/lib/rt.jar matches
Binary file /etc/alternatives/jre/lib/xml.jar matches
Binary file /etc/alternatives/jre/lib/amd64/libjava.so matches
Binary file /etc/alternatives/jre/lib/amd64/libjpkcs11.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/libj9bcv24.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/libj9prt24.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/libj9vm24.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/libj9jit24.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/j9ddr.dat matches
Binary file /etc/alternatives/jre/lib/amd64/default/libjclscar_24.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/libj9dmp24.so matches
Binary file /etc/alternatives/jre/lib/amd64/default/libj9jextract.so matches
Binary file /etc/alternatives/jre/lib/amd64/libunpack.so matches
Binary file /etc/alternatives/jre/lib/amd64/motif21/libmawt.so matches
Binary file /etc/alternatives/jre/lib/amd64/libcmm.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9bcv24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9prt24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9vm24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9jit24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/j9ddr.dat matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libjclscar_24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9dmp24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9gc24.so matches
Binary file /etc/alternatives/jre/lib/amd64/compressedrefs/libj9jextract.so matches
Binary file /etc/alternatives/jre/lib/amd64/libdeploy.so matches
Binary file /etc/alternatives/jre/lib/amd64/libfontmanager.so matches
Binary file /etc/alternatives/jre/lib/ibmcertpathfw.jar matches
Binary file /etc/alternatives/jre/lib/ibmpkcs.jar matches
Binary file /etc/alternatives/jre_ibm_exports/sasl-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-rmi.jar matches
Binary file /etc/alternatives/jre_ibm_exports/sasl.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-ldap.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-ldap-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jdbc-stdext-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-cos.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-rmi-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jaas.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jdbc-stdext-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jaas-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-rmi-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jaas-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jdbc-stdext-3.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-cos-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-ldap-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jndi-cos-1.6.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/sasl-1.6.0_sr15.0.jar matches
Binary file /etc/alternatives/jre_ibm_exports/jdbc-stdext.jar matches
Binary file /etc/alternatives/ftp matches
Binary file /etc/alternatives/jre_ibm/bin/unpack200 matches
Binary file /etc/alternatives/jre_ibm/lib/ext/dtfj.jar matches
Binary file /etc/alternatives/jre_ibm/lib/ext/gskikm.jar matches
/etc/alternatives/jre_ibm/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_Invalid2ByteEncoding "* decodeUTF8CharN - invalid 2 byte encoding (0x%x)"
/etc/alternatives/jre_ibm/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_Invalid3ByteEncoding "* decodeUTF8CharN - invalid 3 byte encoding (0x%x)"
/etc/alternatives/jre_ibm/lib/J9TraceFormat.dat:j9util 1 1 1 N Trc_Util_decodeUTF8CharN_EncodingTooLarge "* decodeUTF8CharN - invalid encoding (0x%x)"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:MAWT 2 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Entry " >AwtDataTransferer::LCIDToTextEncoding() lcid=%f"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:MAWT 4 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Exit1 " <Complete retval=%p, encoding=%s"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:JAVA 2 1 7 N Tr_Process_getDefaultEncoding_Entry " >Process_getDefaultEncoding_Entry(): env=0x%p"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:JAVA 4 1 7 N Tr_Process_getDefaultEncoding_Exit " <Process_getDefaultEncoding_Exit(): env=0x%p exc=0x%p"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:JAVA 2 1 7 N Tr_Process_getCodepageType_Entry " >Process_getCodepageType_Entry(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception1 "* Process_getCodepageType_Exception1(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception2 "* Process_getCodepageType_Exception2(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:JAVA 1 0 0 N Tr_Process_getCodepageType_Exception3 "* Process_getCodepageType_Exception3(): env=0x%p encoding=0x%p"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:Audio 1 1 1 N Tr_Java_com_sun_media_sound_SimpleInputDevice_nGetFormats_Exception5 "* Java_com_sun_media_sound_SimpleInputDevice_nGetFormats_Exception5: Unknown encoding %d."
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:AWT 2 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Entry " >AwtDataTransferer::LCIDToTextEncoding() lcid=%f"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:AWT 4 9 1 N Tr_AwtDataTransferer_LCIDToTextEncoding_Exit1 " <Complete retval=%p, encoding=%s"
/etc/alternatives/jre_ibm/lib/TraceFormat.dat:FONTMANAGER 8 9 1 N Tr_cmaps_makeNativeToUnicodeArray_1 " cmaps: makeNativeToUnicodeArray(encodingID = %d)"
Binary file /etc/alternatives/jre_ibm/lib/ibmorbapi.jar matches
Binary file /etc/alternatives/jre_ibm/lib/ibmcertpathprovider.jar matches
Binary file /etc/alternatives/jre_ibm/lib/ibmjgssprovider.jar matches
Binary file /etc/alternatives/jre_ibm/lib/deploy.jar matches
Binary file /etc/alternatives/jre_ibm/lib/charsets.jar matches
Binary file /etc/alternatives/jre_ibm/lib/rt.jar matches
Binary file /etc/alternatives/jre_ibm/lib/xml.jar matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/libjava.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/libjpkcs11.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libj9bcv24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libj9prt24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libj9vm24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libj9jit24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/j9ddr.dat matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libjclscar_24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libj9dmp24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/default/libj9jextract.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/libunpack.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/motif21/libmawt.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/libcmm.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9bcv24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9prt24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9vm24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9jit24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/j9ddr.dat matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libjclscar_24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9dmp24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9gc24.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/compressedrefs/libj9jextract.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/libdeploy.so matches
Binary file /etc/alternatives/jre_ibm/lib/amd64/libfontmanager.so matches
Binary file /etc/alternatives/jre_ibm/lib/ibmcertpathfw.jar matches
Binary file /etc/alternatives/jre_ibm/lib/ibmpkcs.jar matches
/etc/xscreensaver/jigsaw.xml:<?xml version="1.0" encoding="ISO-8859-1"?>
/etc/xscreensaver/xlyap.xml:<?xml version="1.0" encoding="ISO-8859-1"?>
/etc/xscreensaver/lcdscrub.xml:<?xml version="1.0" encoding="ISO-8859-1"?>
Binary file /etc/vmware-tools/icu/icudt44l.dat matches
Binary file /etc/vmware-tools/plugins/vmsvc/libgrabbitmqProxy.so matches
Binary file /etc/vmware-tools/plugins/vmusr/libdndcp.so matches
Binary file /etc/vmware-tools/plugins/vmusr/libunity.so matches
/etc/openldap/schema/samba3.schema: DESC 'Base64 encoded user parameter string'
/etc/rc.d/kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc1.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc2.d/K02kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc2.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rcS.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc5.d/K02kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc5.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc3.d/K02kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/rc.d/rc3.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/profile.d/complete.tcsh: complete uuencode p/1/f/ p/2/x:'<decode_pathname>'/ n/*/n/
/etc/a2ps.cfg:LibraryPath: /usr/share/a2ps/sheets:/usr/share/a2ps/ps:/usr/share/a2ps/encoding:/usr/share/a2ps/afm:/usr/share/ogonkify/afm:/usr/share/a2ps/ppd:/usr/share/a2ps/fonts:/usr/share/ogonkify/fonts:/usr/share/a2ps
/etc/init.d/kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc1.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc2.d/K02kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc2.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rcS.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc5.d/K02kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc5.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc3.d/K02kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/init.d/rc3.d/S07kbd: # arriving are UTF-8 encoded multibyte sequences.
/etc/gconf/schemas/gnome-terminal.schemas: <key>/schemas/apps/gnome-terminal/global/active_encodings</key>
/etc/gconf/schemas/gnome-terminal.schemas: <applyto>/apps/gnome-terminal/global/active_encodings</applyto>
/etc/gconf/schemas/gnome-terminal.schemas: valid encodings (which are to be taken from the list in src/encoding.c).
/etc/gconf/schemas/gnome-terminal.schemas: translated. This is provided for customization of the default encoding
/etc/gconf/schemas/gnome-terminal.schemas: <short>List of available encodings</short>
/etc/gconf/schemas/gnome-terminal.schemas: A subset of possible encodings are presented in
/etc/gconf/schemas/gnome-terminal.schemas: the Encoding submenu. This is a list of encodings
/etc/gconf/schemas/gnome-terminal.schemas: to appear there. The special encoding name "current"
/etc/gconf/schemas/gnome-terminal.schemas: means to display the encoding of the current locale.
/etc/gconf/schemas/gnome-terminal.schemas: <short>List of available encodings</short>
/etc/gconf/schemas/gnome-terminal.schemas: <long>A subset of possible encodings are presented in the Encoding submenu. This is a list of encodings to appear there. The special encoding name "current" means to display the encoding of the current locale.</long>
/etc/gconf/schemas/gnome-terminal.schemas: <short>List of available encodings</short>
/etc/gconf/schemas/gnome-terminal.schemas: <long>A subset of possible encodings are presented in the Encoding submenu. This is a list of encodings to appear there. The special encoding name "current" means to display the encoding of the current locale.</long>
/etc/gconf/schemas/gnome-terminal.schemas: <short>List of available encodings</short>
/etc/gconf/schemas/gnome-terminal.schemas: <long>A subset of possible encodings are presented in the Encoding submenu. This is a list of encodings to appear there. The special encoding name "current" means to display the encoding of the current locale.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: A filename extension to be used when storing files encoded
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/gnome-audio-profiles.schemas: <long>A filename extension to be used when storing files encoded with this profile.</long>
/etc/gconf/schemas/yelp.schemas:<?xml version="1.0" encoding="utf-8"?><!-- -*- indent-tabs-mode: nil -*- -->
/etc/gconf/schemas/gedit.schemas: <key>/schemas/apps/gedit-2/preferences/encodings/auto_detected</key>
/etc/gconf/schemas/gedit.schemas: <applyto>/apps/gedit-2/preferences/encodings/auto_detected</applyto>
/etc/gconf/schemas/gedit.schemas: <default><!-- Translators: This is the sorted list of encodings used by gedit
/etc/gconf/schemas/gedit.schemas: for auto-detecting the encoding of a file. You may want to customize it adding
/etc/gconf/schemas/gedit.schemas: encodings that are common in your country, for instance the GB18030 encoding
/etc/gconf/schemas/gedit.schemas: for the Chinese translation. You may also want to remove the ISO-8859-15 encoding
/etc/gconf/schemas/gedit.schemas: "CURRENT" is a magic value used by gedit and it represents the encoding
/etc/gconf/schemas/gedit.schemas: Only recognized encodings are used.
/etc/gconf/schemas/gedit.schemas: See http://svn.gnome.org/viewcvs/gedit/trunk/gedit/gedit-encodings.c?view=markup for
/etc/gconf/schemas/gedit.schemas: a list of supported encodings -->[UTF-8,CURRENT,ISO-8859-15,UTF-16]</default>
/etc/gconf/schemas/gedit.schemas: <short>Auto Detected Encodings</short>
/etc/gconf/schemas/gedit.schemas: <long>Sorted list of encodings used by gedit for auto-detecting the encoding of
/etc/gconf/schemas/gedit.schemas: a file. "CURRENT" represents the current locale encoding. Only recognized encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Auto Detected Encodings</short>
/etc/gconf/schemas/gedit.schemas: <short>Auto Detected Encodings</short>
/etc/gconf/schemas/gedit.schemas: <long>Sorted list of encodings used by gedit for auto-detecting the encoding of a file. "CURRENT" represents the current locale encoding. Only recognised encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Auto Detected Encodings</short>
/etc/gconf/schemas/gedit.schemas: <long>Sorted list of encodings used by gedit for auto-detecting the encoding of a file. "CURRENT" represents the current locale encoding. Only recognized encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Encoding yang mendeteksi secara otomatis</short>
/etc/gconf/schemas/gedit.schemas: <long>Sorted list of encodings used by gedit for auto-detecting the encoding of a file. "CURRENT" represents the current locale encoding. Only recognized encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Encodatges detectats automaticament</short>
/etc/gconf/schemas/gedit.schemas: <key>/schemas/apps/gedit-2/preferences/encodings/shown_in_menu</key>
/etc/gconf/schemas/gedit.schemas: <applyto>/apps/gedit-2/preferences/encodings/shown_in_menu</applyto>
/etc/gconf/schemas/gedit.schemas: <default><!-- Translators: This is the list of encodings shown by default in the Character Coding
/etc/gconf/schemas/gedit.schemas: menu in open/save file selector. Only recognized encodings are displayed.-->[ISO-8859-15]</default>
/etc/gconf/schemas/gedit.schemas: <short>Encodings shown in menu</short>
/etc/gconf/schemas/gedit.schemas: <long>List of encodings shown in Character Coding menu in open/save file selector.
/etc/gconf/schemas/gedit.schemas: Only recognized encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Encodings shown in menu</short>
/etc/gconf/schemas/gedit.schemas: <long>List of encodings shown in Character Coding menu in open/save file selector. Only recognized encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Encodings shown in menu</short>
/etc/gconf/schemas/gedit.schemas: <long>List of encodings shown in Character Coding menu in open/save file selector. Only recognised encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Encodings shown in menu</short>
/etc/gconf/schemas/gedit.schemas: <long>List of encodings shown in Character Coding menu in open/save file selector. Only recognized encodings are used.</long>
/etc/gconf/schemas/gedit.schemas: <short>Encoding terlihat di menu</short>
/etc/gconf/schemas/gedit.schemas: <long>Daftar dari encoding yang diperlihatkan dalam menu karakter coding pada pemilih buka/simpan berkas. Handa encoding yang dikenali yang dipergunakan.</long>
/etc/gconf/gconf.xml.schemas/%gconf-tree-pl.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-pl.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-nb.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-nb.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-af.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-de.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-de.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-nds.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-hu.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-hu.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-da.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-da.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-fi.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-fi.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-sv.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-sv.xml: <entry name="active_encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-nn.xml: <dir name="encodings">
/etc/gconf/gconf.xml.schemas/%gconf-tree-nn.xml: <entry name="active_encodings">
|
rklm
Projektleitung
Anmeldungsdatum: 16. Oktober 2011
Beiträge: 13175
|
D1V1N3 schrieb: export LANG=en_US.ISO-8859-1 habe ich nicht ausgeführt und auch nicht in das Script eingefügt. Wenn ich dies tun soll, dann bitte eine Info in welchem Script und an welcher Stelle.
Wie gesagt, ich glaube, das hilft nicht.
Die Datei /etc/default/console-setup existiert nicht.
Dann wird es ganz schwer: wir haben hier keinen Zugang zu Deiner Konsole, wir kennen das Betriebssystem und die Software nicht. Ich bin bei I18N auch nicht so extrem sattelfest, dass ich einfach in Deinen Ausgaben suche und dann gleich die Lösung habe. Wenn das kommerzielle Software ist, dann sollte deren Support das regeln.
|
D1V1N3
(Themenstarter)
Anmeldungsdatum: 29. November 2014
Beiträge: 53
|
Kein Problem. Danke trotzdem für die Hilfe!
|