similar to: smbclient connection problem from MVS to Windows suspect EBCDIC to ASCII conversion problem

Displaying 20 results from an estimated 800 matches similar to: "smbclient connection problem from MVS to Windows suspect EBCDIC to ASCII conversion problem"

1998 Jul 24
1
Anybody want EBCDIC Support for Samba 1.9.18?
We've ported samba 1.9.18p1 to OS/390 Unix (nee MVS), and it seems to be very much in demand among the mainframe folks. We'd like to integrate our changes back into the mainline development stream. Our changes consist entirely of patches to ensure that the code works on an EBCDIC system, as well as a new facility that allows for ASCII/EBCDIC data conversion on the fly for files
2008 Feb 07
1
Question on openSSH and sending file to MVS file formats
Hello, I was looking for Damien Miller, Markus Friedl or Theo de Raadt to possibly answer an SFTP question. I am having trouble locating an example and think the task can not be done. Do you have an example of an unix host machine initiating a file transfer to an ibm z/OS and create a mvs file? I have examples from appendix A of the IBM Ported Tools for z?OS Users Guide that shows how
2004 Jul 22
3
ebcdic problem in bufaux.c
I am working on a port of Openssh 3.8p1 after already having done a port of Openssh 3.5p1. There are a couple of new lines in buffer_get_bignum2() that are causing me problems: if (len > 0 && (bin[0] & 0x80)) fatal("buffer_get_bignum2: negative numbers not supported"); The "& 0x80" check is not relevant in ebcdic. Does anyone
2010 Apr 29
1
EBCDIC
Does R have package/function that can read a file that has been downloaded from a mainframe in EBCDIC format? Thanks, Mike [[alternative HTML version deleted]]
2008 Mar 03
1
Posting request
Peter Please delete this posting are at least remove the company name. thanks john Question on openSSH and sending file to MVS file formats Remove Highlighting -------------------------------------------------------- Hello, I was looking for Damien Miller, Markus Friedl or Theo de Raadt to
2001 Nov 05
3
OpenSSH 2.3
Dear Gentlemen: a couple of months ago we ported OpenSSH 2.3 to an IBM OS/390 Mainframe machine: It ran very well until we tried to connect to an SSH server using SSH2 protocol. On the OS/390 (which is the client) it comes up with the following error messages: >ssh -v -2 somehost . . . debug: bits set: 504/1024 debug: len 55 datafellows 0 debug:
2012 Nov 10
1
help with for loop to test for a condition in a vector
I want my for loop to test for the presence of a term in a vector and return a value to a new vector. I'm not writing it correctly though. Here's what I have... > testfor = letters[1:5] > x = c("a", "b", "e", "f", "g") > result = rep(NA, length(testfor)) > > for (i in testfor){ + v = any(x == testfor[i]) + result[i] = v
2014 Oct 01
1
Dovecot fails to start - Unknown setting: socket
I?m receiving the following error(s) messages when trying reloading dovecot (Debian wheezy). doveconf: Fatal: Error in configuration file /etc/dovecot/dovecot.conf line 73: Unknown setting: socket doveconf: Error: managesieve-login: dump-capability process returned 89 Configuration file /etc/dovecot/dovecot.conf : # If you only want to use dovecot-auth, you can set this to "none".
2010 Nov 10
2
Samba for z/OS 1.10
Hello everybody, is there any samba version available for download, which runs on IBM MVS, i.e. IBM z/OS 1.10 ...? if not, is there a possibility to compile the source code myself for the target system? with kind regards, M. ---------------------------- The information transmitted may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or
2001 Mar 01
4
Samba On The Mainframe
Greetings, This is my first posting. I read that Samba can run on USS OS/390 but are there tips or tricks that can be shared? I am a AIX systems engineer (13mos) with 13 years experience as a MVS systems guy. Our current release of OS/390 is 2.8 . I already found a lot of information about Samba on OS/390 in the download page and I'm trying to make sense of it. But if there is any
2013 Oct 29
2
Problem Building opus-1.0.3 on Microsoft Visual Studio 2012
I am using mvs 2012 but the .sln provided is of msv 2010 so on opening .sln it tries to update libraries which is successful but I am unable to build (compile) it as it gives series of errors. I am pretty new to these things so can anyone tell me if I am doing anything wrong or how to create(.lib and .dll) files so I can use them in my project. Please forgive me if I have asked something foolish.
2003 Mar 05
1
Authentication error on weekends
Hi I have a Linux (RH 7.0), and I'he configured on smb server one share to only one NT user. This user is a tool used for file-transfer from MVS to Windows using UNC file name convention. How I don't know the user's password, I using SERVER security on smb.conf to validate the user. The server that validate the user is the same where file-transfer tool runs. During the workdays, it
2014 Oct 16
3
Character Set conversion from EBCIDIC to ASCII
Hello, We as an organization are going to use SFTP for our data transfer. Our requirement is to SFTP the file from IBM Mainframe (z/390) to Unix or Windows. Currently we are using FTP, which converts the character set from EBCIDIC to ASCII and also take care of CR and LF aspect. My question is, do the same feature is available in SFTP, where it smartly understand the source and destination
2019 Jul 16
2
Replication issue 2.3.7
> On 16/07/2019 18:40 Stuart Henderson via dovecot <dovecot at dovecot.org> wrote: > > > On 2019-07-13, Reio Remma via dovecot <dovecot at dovecot.org> wrote: > > Hello! > > > > I noticed these in the logs since upgrading from 2.3.6. to 2.3.7: > > > > Jul 13 11:52:10 turin dovecot: doveadm: Error: > > dsync-remote(reio at
2009 Apr 01
1
Adjusting font size in a lattice graph
Hi all I have created a lattice graph but the text appears too big. Just wondering if there was a way I could change the font size. tp1.nDai=xyplot(value ~ yr | Name, data = nDai,type = 'o') update(tp1.nDai, aspect = c(0.8), layout = c(4, 4)) I would appreciate your help. Kind regards andy Andrew McFadden MVS BVSc Incursion Investigator Investigation & Diagnostic Centres -
2010 Feb 14
1
Adding a regression line to an xyplot
Hi R users > I am trying to add a regression line to a graph for "c" for factor 2 > only. Any suggestions? > library(lattice) a=(1:10) b=c(1:5,16:20) c=as.factor(c(rep(1,5),rep(2,5))) d=data.frame(a,b,c) xyplot(a~b, pch=c(6,8),data = tavg, groups=d$c, reg.line=lm, smooth=FALSE, type=c("p","g"),xlab="a",ylab="b") > I would
2009 Apr 14
2
Subset function: selecting variables within a factor
Hi all I know this must be an easy one so sorry for the trouble. I would like to select a list of variables within a factor The following example is given in help for subset: subset(airquality, Temp > 80 select = c(Ozone, Temp)) So how do I select all temperatures of 90 and 80 ie Temp = c(80,90) I would appreciate your help. Kind regards andy Andrew McFadden MVS BVSc Incursion
2019 Jul 13
5
Replication issue 2.3.7
Hello! I noticed these in the logs since upgrading from 2.3.6. to 2.3.7: Jul 13 11:52:10 turin dovecot: doveadm: Error: dsync-remote(reio at mrstuudio.ee)</1ekE7qbKV2gYwAAsNnMGQ>: Error: Exporting mailbox INBOX failed: Mailbox attribute vendor/vendor.dovecot/pvt/server/sieve/files/MR lookup failed: Mailbox attributes not enabled Jul 13 11:52:11 turin dovecot: doveadm: Error:
2017 Aug 04
1
Restructuring Star Wars data from rwars package
I'm having trouble restructuring data from the rwars package into a dataframe. Can someone help me? Here's what I have... library("rwars") library("tidyverse") # These data are json, so they load into R as a list people <- get_all_people(parse_result = T) people <- get_all_people(getElement(people, "next"), parse_result = T) # Look at Anakin
2011 May 17
1
Dealing with null values Aggregate function
Hi R users I trying to some aggregate statistics on a very large dataset. The null values are causing a problem. I would like to calculate aggregate values for groups. I am just no sure how to deal with the "" I would ideally like them to ignored ie if there is only 1 value over several columns than that value would be the summary statistic. I have put the following example together to