search for: remin

Displaying 20 results from an estimated 21 matches for "remin".

Did you mean: remain
2004 Aug 31
1
[PATCH] supporting a remote scp path option in scp
...t; or -S) */ char *ssh_program = _PATH_SSH_PROGRAM; +/* This is the program to execute for the remote scp. ("scp" or -e) */ +char *scp_remote_program = _PATH_SCP_REMOTE_PROGRAM; + /* This is used to store the pid of ssh_program */ pid_t do_cmd_pid = -1; @@ -198,8 +201,8 @@ int errs, remin, remout; int pflag, iamremote, iamrecursive, targetshouldbedirectory; -#define CMDNEEDS 64 -char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */ +char *rscpcmd; /* must hold scp_remote_program + "-r -p -d\0" */ + int response(void); void r...
2011 Jan 25
2
Radmine
Hi, I know it''s a silly question, how to start Remine server? tried "./ctlscript.sh start" mysql (pid 8192) already running starting port 3001 starting port 3002 Syntax OK httpd (pid 8511) already running subversion (pid 8218) already running When I check localhost:8080/redmine Service Temporarily Unavailable Why is that? Thanks,...
2012 Aug 19
3
Bug Report and patch fix
...+verifypath(char *file) +{ + if (access(file, F_OK) == -1) + { + errno = ENOENT; + run_err("%s: %s",file,strerror(errno)); + killchild(0); + } +} + + +void toremote(char *targ, int argc, char **argv) { char *bp, *host, *src, *suser, *thost, *tuser, *arg; @@ -656,6 +669,7 @@ if (remin == -1) { xasprintf(&bp, "%s -t %s%s", cmd, *targ == '-' ? "-- " : "", targ); + verifypath(argv[i]);/*added to check for the local existence of file before trying to do anything*/ host = cleanhostname(thost); if (do_cmd(host, tuser...
2019 Jan 19
2
Status of SCP vulnerability
Hello, I would like to request an update of the progress regarding fixes for the recently disclosed SCP vulnerability (CVE-2018-20685, CVE-2019-6111, CVE-2019-6109, CVE-2019-6110) It has been stated that CVE-2018-20685 has been patched in november but there are currently no information available on the progress of patches regarding the other CVEs. Will there be a patched release any time soon?
2011 Nov 23
2
Bar charts, frequencies known, intervals of varying width
...urposes. The data actually represents sieving of sand where $size is sieve aperture and where $mass is the amount remaining on the sieve. So if I sieve 100g of sand through increasingly fine sieves nothing remains on the coarsest sieve say 2500 microns. Between 2000 and 2500 microns there is 0.2g remining on the 2000micron sieve etc. as per the data supplied. size, mass 2500, 0 2000, 0.2 1700, 1.8 1400, 5 1000, 13 800, 40 600, 20 300, 15 180, 3 <180, 2 The data here I have made up for simplicity. In general sands tend to be distributed as lognormal curves and mixtures of sands are combined a...
2001 Oct 16
6
program-prefix does not work
...1,276 **** --- 272,280 ---- case 'S': ssh_program = xstrdup(optarg); break; + case 's': + scp_program = xstrdup(optarg); + break; case 'v': addargs(&args, "-v"); verbose_mode = 1; *************** *** 327,343 **** remin = remout = -1; /* Command to be executed on remote system using "ssh". */ ! (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s", verbose_mode ? " -v" : "", iamrecursive ? " -r" : "", pflag ? " -p" : "",...
2001 May 12
4
Erase the source file open; specify a tempfile name option
...->8--- Index: scp.c @@ -105,6 +105,7 @@ /* Returns width of the terminal (for progress meter calculations). */ int getttywidth(void); + int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc); /* Struct for addargs */ @@ -206,9 +207,11 @@ uid_t userid; int errs, remin, remout; int pflag, iamremote, iamrecursive, targetshouldbedirectory; +int eraseflag; +char *tmpfn = ""; -#define CMDNEEDS 64 -char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */ +char *cmd; +int cmdlen; int response(void); void rsource(char *, struct stat *); @@ -236,7 +...
2006 Oct 23
1
unexpected read.csv behavior
...dan 16.018494 1796.67 India 553.425328 12360.30 Pakistan 47.159393 2346.71 China 455.680191 8041.79 In trying to play with this posting, I saved the data as a .csv file where the first row had only two entries and read: , LandFill, Reminants I tried reading the data in with read.csv("ex.csv", header=TRUE) To my surprise this created a 3 column dataframe with the first column labeled as X. X was a factor. According to the help file: "If there is a header and the first row contains one fewer field than the num...
2006 May 14
1
scp patch to delete source files after copy
...*************** *** 315,320 **** --- 318,326 ---- case 'S': ssh_program = xstrdup(optarg); break; + case 'u': + delete_source = 1; + break; case 'v': addargs(&args, "-v"); verbose_mode = 1; *************** *** 373,381 **** remin = remout = -1; do_cmd_pid = -1; /* Command to be executed on remote system using "ssh". */ ! (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s", verbose_mode ? " -v" : "", iamrecursive ? " -r" : "", pflag ? " -p"...
2011 Aug 17
1
openssh-unix-dev Digest, Vol 100, Issue 3
...xasprintf(&bp, "%s -f -- %s", cmd, src); > + xasprintf(&bp, "%s -f %s%s", cmd, > + *src == '-' ? "-- " : "", src); > if (do_cmd(host, suser, bp, &remin, &remout) < 0) > exit(1); > (void) xfree(bp); > host = cleanhostname(thost); > - xasprintf(&bp, "%s -t -- %s", cmd, targ); > + xasprintf(&...
2010 Nov 19
3
File Offsets for SCP (patch)
...iple SSH connections by means of a management application. Any comments, questions, or suggestions are welcome. --- ../canonical-openssh5.6/scp.c 2010-07-01 23:37:33.000000000 -0400 +++ scp.c 2010-11-19 17:17:26.000000000 -0500 @@ -302,6 +302,7 @@ struct passwd *pwd; uid_t userid; int errs, remin, remout; int pflag, iamremote, iamrecursive, targetshouldbedirectory; +double fd_offset, fd_inset; #define CMDNEEDS 64 char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */ @@ -324,6 +325,9 @@ main(int argc, char **argv) extern char *optarg; extern int optind; + fd_inset = 0...
2002 Jul 13
0
[PATCH]: scp program improved
...-119,6 +138,9 @@ /* This is set to non-zero to enable verbose mode. */ int verbose_mode = 0; +/* This disables resume mode for default */ +int resume_mode = 0; + /* This is set to zero if the progressmeter is not desired. */ int showprogress = 1; @@ -202,6 +224,7 @@ uid_t userid; int errs, remin, remout; int pflag, iamremote, iamrecursive, targetshouldbedirectory; +off_t rate_limit = 0; #define CMDNEEDS 64 char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */ @@ -223,7 +246,10 @@ char *targ; extern char *optarg; extern int optind; - + int factor, i; /* For rate limit...
2002 Dec 03
1
scp "Bad address" errors with strange filesystem block sizes
...for (count = i = 0; i < size; i += 4096) { amt = 4096; if (i + amt > size) amt = size - i; count += amt; do { j = read(remin, cp, amt); if (j == -1 && (errno == EINTR || errno == EAGAIN)) { continue; } else if (j <= 0) { run_err(&quo...
2003 Apr 18
2
kjournald panic in 2.4.20 RedHat 7.2
Hi, If this is a redundant post I apologize. I am running 2.4.20 on what has been a very stable Athlon machine for months, tried to move a 2 GB file from an ext2 partition to an ext3 and kjournald crashed. Here are the last reminants of my shell scrollback: [*ROOT* mofo /mnt/sda1/mysql/fd 641 ] ll oldmail/ total 2363288 -rw-rw---- 1 mysql mysql 2147483647 Jan 23 18:04 maillog.MYD -rw-rw---- 1 mysql mysql 270138368 Jan 23 18:06 maillog.MYI -rw-rw---- 1 mysql mysql 8910 Mar 22 2002 maillog.frm...
2000 Dec 12
1
scp and filenames with weird characters
...inue; } host = cleanhostname(host); - len = strlen(src) + CMDNEEDS + 20; + len = strlen(src) + CMDNEEDS + 22; bp = xmalloc(len); - (void) sprintf(bp, "%s -f %s", cmd, src); + (void) sprintf(bp, "%s -f \"%s\"", cmd, src); if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) { (void) xfree(bp); ++errs;
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
...t Fl L +Preserves symbolic links as such, instead of following them and +copying their targets. .It Fl p Preserves modification times, access times, and modes from the Index: scp.c --- scp.c.prev +++ scp.c Fri Aug 18 04:14:40 2000 @@ -253,5 +253,5 @@ struct passwd *pwd; uid_t userid; int errs, remin, remout; -int pflag, iamremote, iamrecursive, targetshouldbedirectory; +int linkflag, pflag, iamremote, iamrecursive, targetshouldbedirectory; #define CMDNEEDS 64 @@ -280,5 +280,5 @@ main(argc, argv) memset(sshoptions,0,sizeof(sshoptions)); sshoptionsend = sshoptions; - while ((ch = getopt(a...
2003 Apr 18
0
kjournald panic in 2.4.20
Hi, If this is a redundant post I apologize. I am running 2.4.20 on what has been a very stable Athlon machine for months, tried to move a 2 GB file from an ext2 partition to an ext3 and kjournald crashed. Here are the last reminants of my shell scrollback: [*ROOT* mofo /mnt/sda1/mysql/fd 641 ] ll oldmail/ total 2363288 -rw-rw---- 1 mysql mysql 2147483647 Jan 23 18:04 maillog.MYD -rw-rw---- 1 mysql mysql 270138368 Jan 23 18:06 maillog.MYI -rw-rw---- 1 mysql mysql 8910 Mar 22 2002 maillog.frm...
2011 Mar 11
2
Problem with Redmine
I am having a problem getting Redmine to run with Oracle (11.2) backend. I get this error (below) because Oracle table names are limited to 30 characters. Does anyone around here know of a fix or workaround? I''m wondering if I can simple change the table name, or if that will break the application. When doing a db migrate to an Oracle db this creates the error below. I''m so
2009 Jul 15
5
OT: Web "Project" type software
Sorry for the OT... I'm looking for some software to fill a fairly specific set of requirements. I'm not necessarily looking for project software, but it seems like the closest to match what I need. I'm also not tied into open source or free. If anyone knows of any software that might fill these requirements I would appreciate it. Here's what I'm looking for: 1) Web enabled
2004 Feb 22
3
ARM/Thumb updates and some other minor tweaks
...For these we need an alternative (eg __muldi3 code from kernel) +# + + .text + .align 2 @ For ARM, align means align on a 2^n boundary + .globl __muldi3 + .type __muldi3,function + +#ifdef __thumb__ + .thumb_func +#endif + +__muldi3: + +#ifdef __thumb__ + bx pc + nop +#endif + + .code 32 @ remining instructions are ARM mode + + stmdb sp!, { r4, lr } @ preserve 8 byte stack alignment +#ifdef __ARMEB__ + mov lr, r1 + umull r1, r12, r3, lr + mla r0, r3, r0, r12 + mla r0, r2, lr, r0 +#else + mov lr, r0 + umull r0, r12, r2, lr + mla r1, r2, r1, r12 + mla r1, r3, lr, r1 +#endif +#ifdef __thumb_...