similar to: Character encoding problem in file names

Displaying 20 results from an estimated 4000 matches similar to: "Character encoding problem in file names"

2016 Jul 11
2
server not using utf8-mode with Synology client
On Mon, Jul 11, 2016 at 11:41:24PM +0200, Xen wrote: > I wrote here how my filenames are getting mangled when getting sent > or received to the server. > > Server: current Ubuntu lookalike. > > Client: Older Synology diskstation with probably a modified mount.cifs. > > When I send utf-8 it gets received as dos. > > "é" for instance is #c3a9 in utf-8, and
2003 Jun 16
1
german umlaut and samba 3
hi all, we want to use samba to connect a windows machine and a linux server, the linux machine should read the windows-filesystem to backup it. in samba 2.xx we wasn't able to teach samba the german umlauts or filenames containing a blank. we tried the character substitution in smb.conf and of course we called smbmount with iocharset=iso8859-1,codepage=cp850, but unforunatly it doesn't
2002 Aug 10
1
How to mount a resource with non ascii chars??
Hi Samba Users, After searching through recent archives, I'd like to pose this question: How does one smbmount a Windows a share with non-ascii letters in the share name? Let's say the target is Windows 2000 Pro Deutsch (German). It has two shares: /data and /d?ta [d,umlaut-a,t,a] From Redhat linux 2.7.4 and 2.4.18 I try to mount these directories. mount -t smbfs -o
2002 Oct 30
2
codepage-conversion for smbclient
Hi list, I've browsed through the archives, but I didn't find a answer for this: I use smbclient to access a windowsNT 4.0 server. I get only '?' for filenames which contains Umlauts. F.e., a file called "Verkn?pfung" is displayed as "Verkn?pfung". I use following mount-string: mount.smbfs //SERVER/Share /home/xxx -o rw noexec nosuid nodev user codepage
2006 Oct 18
1
latin1,utf-8...encoding and data
Hello, I have some questions concerning encoding and package distribution. We develop the ade4 package. For some data sets included in the package, there are accentued character (e.g. ?,?...). The data sets have been saved using latin1 encoding, but some of us use utf-8 and can not see some data sets which contains accented chracters. e.g: librarry(ade4) data(rankrock) rankrock in this case,
2002 Mar 10
1
Hungarian codepage problem using smbmount
Dear Samba Developers, Dear Urban, This was my original letter. I hope you get it correctly this time. Maybe it was too big, now I reduced the size of this letter. My goal is to make a Linux fileserver up and running with automatic archiving functionality in a mixed Windows 2000 - Linux network and since the beginning of February I could not solve my problem, so I write to you hoping that you
2014 Jan 18
2
mounting CDROM without mapaping UC to LC
Hi! this is surely a newbie question, so I should know the answer, but I'm fighting with mounting a CD such that filenames are NOT mapped to lowercase (I need to use its on-board tools for accessing files on it while mounted on Centos 6.5, and those tools assume uppercawse, since they assume the entire world runs Windoze.) but despite my best efforts, it keeps being mounted with UC-LC
2002 Aug 05
1
smbmount: mount option "noauto" causes codepage and/or iocharset to fail
I've been trying several times now: # mount -t smbfs -o credentials=/etc/samba/private/credentials,codepage=cp850,iocharset=iso8859-1,noauto //machine/share\$ /mnt/share Causes: # ls /mnt/share/directory Sp?rsm?l.txt While this: # mount -t smbfs -o credentials=/etc/samba/private/credentials,codepage=cp850,iocharset=iso8859-1 //machine/share\$ /mnt/share Causes: # ls /mnt/share/directory
2017 Jun 12
1
Accented letters in shared USB drive (was: Share USB pendrive in ADSL router)
Hi Rodolfo (sorry for dup email), Rodolfo Medina via samba <samba at lists.samba.org> writes: > ...For example, when I copy the ~/università to /mnt/shared, I get: > > universit\ �/ > > Or, if in /mnt/shared I do: `touch affinché', I get: > > affinch\ � > > I've never had this problem before, in my Linux home directory. Please suggest > whoever can
2010 Aug 07
1
iocharset, codepage issue in CentOS 5.5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><title>iocharset, codepage issue in CentOS 5.5</title> <META http-equiv=Content-Type content="text/html; charset=windows-1251"> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- body
2004 Oct 04
2
smbmount and UTF-8 characters
Hello list! Sorry to be a pain, but I've hunted high and low and can't seem to find the answer. I have a Slackware 10 system and a Microsoft Windows 2000 system. On the Windows 2000 system are lots of files with extended characters - like (tm), (r) and characters with umlauts. I used the "locale" command and set LC_ALL=en_US.UTF8. I am running KDE and in the Konqueror
2003 Dec 16
1
mounting samba shares on linux with non-ascii dirs
Hi! I've just searching the list archives but cannot solve my problem with mounting samba (v3.0) shares back on linux (RH 8.0 and 9). Mounting on Win clients works fine and any filenames (including long names with non-ascii chars and spaces) are perfictly supported and accessed. Mounting the share back on (even the same) linux box is a complex task. I use: mount -t smbfs -o guest
2006 Apr 01
1
Russian CHARS
Hello samba, How can mount (smbmount) MSWIN2003 resource from Linux client (RHEL4U2) to see russian. I am using following command: # smbmount //srv2/v$ /mnt/backup/srv2 -o 'credentials=userpass,iocharset=KOI8-R,codepage=koi8r' What I should use env. variables or additional parameters from this command (smbmount) ? I see only that (but need russian and eng): What Women
2005 Sep 03
3
Accents in filenames on vfat filesystem
Hello. I am trying to create a text file that contains an accent like '?' in it's filename on a vfat filesystem. This generates an error like the following: "test?.txt" E212: Can't open file for writing I have made a 'modprobe nls_cp850' and 'modprobe nls_iso8859-1' to load those needed modules. Then I mounted my FAT32 partition like this: mount -t
2013 Jun 27
3
Read a text file into R with .Call()
Hi, I want to read a text file into R with .Call(). So I define some NEW_CHARACTER() to store the chracters read and use SET_STRING_ELT to fill the elements. e.g. PROTECT(qNames = NEW_CHARACTER(10000)); char *foo; // This foo holds the string I want. while(foo = readLine(FN)){ SET_STRING_ELT(qNames, i, mkChar(foo))); } In this way, I can get the desired character from qNames. The only problem
2004 Jan 23
2
trouble with german special chars on smb shares
Setup: two Slackware9.1 boxen with Samba 3.0.1 (tried 2.2.x as well), where xerxes: is a file server and shodan: is the client on xerxes there are 3 shared vfats (the errors I am going to describe occur on ext2/3 in exactly the same way) When I do: dexter@xerxes:/mnt/f/smbtest$ touch Umlaute_??? I get: dexter@xerxes:/mnt/f/smbtest$ ls Umlaute_??? Just like it should. BUT: on the client
2016 Dec 04
3
Mount share in Ubuntu
I have a samba server with three shares. I would like to permanently mount one of these shares in a Ubuntu server. I have read the following guide: https://wiki.ubuntu.com/MountWindowsSharesPermanently#Mount_password_protected_network_folders This guide states that I need to amend fstab and then use "mount -a" I have included the following in fstab: //aphrodite/Personal
2016 Jul 11
4
server not using utf8-mode with Synology client
On Tue, Jul 12, 2016 at 01:19:37AM +0200, Xen wrote: > Jeremy Allison schreef op 12-07-2016 0:58: > >On Mon, Jul 11, 2016 at 11:41:24PM +0200, Xen wrote: > >>I wrote here how my filenames are getting mangled when getting sent > >>or received to the server. > >> > >>Server: current Ubuntu lookalike. > >> > >>Client: Older Synology
2005 Jul 12
1
HAL and mounting volume
Hi, is there anybody understanding HAL? I use CentOS 4 (RHEL 4) I need set specific mount options for USB flash disk. I found I can do it in /usr/share/hal/fdi/95userpolicy/storage-policy.fdi <?xml version="1.0" encoding="ISO-8859-1"?><!-- -*- SGML -*- --> <deviceinfo version="0.2"> <device> <match key="volume.fstype"
2004 Aug 22
1
Wrong charset when mounting WindowsXP shares
Hello, I don't seem to be able to mount a WindowsXP share with smbmount and get the correct charset. From what I understand Win2000/XP use UTF-8 for SMB shares, so I tried to mount with -o iocharset=utf8 but it did not make any difference. All extended characters are messed up or truncated. Here is what I found out using filenames with a '?': When I mount a