Displaying 20 results from an estimated 500 matches for "60000".
Did you mean:
0000
2006 Feb 06
4
DO NOT REPLY [Bug 3488] New: writefd_unbuffered failed to write 4096 bytes: phase "unknown" [generator]: Broken pipe (32)
..._fdi.txt.z__.c1ayMM", 1000, 200) = 0
19763: chmod("armstrong/.armstrong4-3_fdi.txt.z__.c1ayMM", 0444) = 0
19760: read(0, " S T R I N G _ T Y P E _".., 263160) = 263160
19760: read(0, " R I N G _ M C F _ N A M".., 263160) = 263160
19760: poll(0xFFBFD820, 2, 60000) = 1
19760: write(1, "FC0F\007\0\0D4 lD1FA19D7".., 4096) = 4096
19760: time() = 1139251239
19760: read(0, " O O L _ I S _ G N D _ P".., 263160) = 263160
19763: rename("armstrong/.armstrong4-3_fdi.txt.z__...
2003 Oct 09
0
rsync sleeps ( long sleep times )
..., I tried taking a truss dump
for the rsync process to figure out whats going on.
On the source server I can see the process slows down every time the
following truss output is logged
>>>> write(4, " e r s i o n C a l c u l".., 639) = 639 <<<<
poll(0xFFBE6F38, 1, 60000) (sleeping...)
poll(0xFFBE6F38, 1, 60000) = 0
poll(0xFFBE6F38, 1, 60000) (sleeping...)
poll(0xFFBE6F38, 1, 60000) = 0
poll(0xFFBE6F38, 1, 60000) (sleeping...)
poll(0xFFBE6F38, 1, 60000) = 0
poll(0xFFBE6F38, 1, 60000) (sleeping...)
poll(0xFFBE6F38, 1, 60000) = 0
poll(0xFFBE6F38, 1, 60000) (s...
2003 Oct 15
1
rsync freezes on solaris
.... The same run with the -an flag runs without any issues. We run rsync over ssh on solaris boxes.
To debug the situation we attached "truss" to the process on the source as well as the destination.
We see the following output on the destination server.
<snip>
poll(0xFFBEF4B8, 2, 60000) (sleeping...)
poll(0xFFBEF4B8, 2, 60000) = 0
poll(0xFFBEF4B8, 2, 60000) (sleeping...)
poll(0xFFBEF4B8, 2, 60000) = 0
poll(0xFFBEF4B8, 2, 60000) (sleeping...)
poll(0xFFBEF4B8, 2, 60000) = 0
poll(0xFFBEF4B8, 2, 60000) (sleeping...)
poll(0xFFBEF4B8, 2, 60000) = 0
poll(0xFFBEF4B8, 2, 60000) (s...
2009 Jan 22
1
ftp and iptables
...ter.
I'd like to solve two problems:
(1) make ftp work for Windows clients outside the Linksys
router
and then ideally, if possible,
(2) have ftp work for both active and passive connections
and restrict those connections to use ports between
40000 to 60000
The ports 20,21 and 40000 to 60000 on the Linksys router
are open, and vsftp is configured with the following options
pasv_min_port=40000
pasv_max_port=60000
pasv_address=xxx.xxx.xxx.xxx
connect_from_port_20=NO
The ftp entry automatically generated the system in /etc/sysconfig/i...
2009 May 12
1
enum agi interesting problem
...esolver ("e164.arpa", "e164.info", "e164.org") {
my @enums = get_enums($phone, $resolver);
foreach my $enum (@enums) {
$dialstring = $enum . "|90|HL(" .
($maxtime * 60 * 1000) . ":60000:30000)";
$res = $AGI->exec("DIAL $dialstring");
$answeredtime =
$AGI->get_variable("ANSWEREDTIME");
$dialstatus =
$AGI->get_variable("DIALSTATUS&q...
2001 Aug 03
1
Disconnecting: protocol error: rcvd type 98
...restore_uid
debug1: fd 11 setting O_NONBLOCK
debug1: fd 11 IS O_NONBLOCK
debug1: channel 1: new [auth socket]
debug1: Entering interactive session.
debug1: fd 8 setting O_NONBLOCK
debug1: fd 9 IS O_NONBLOCK
debug1: server_init_dispatch_13
debug1: server_init_dispatch_15
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 mili 10
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 mili 10
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 mili 60000
debug3: tvp!=NULL kid 0 m...
2002 Feb 05
5
SIGUSR1 or SIGINT error
Howdy,
We occassionally get the following error when running our nightly
backups:
rsync error: received SIGUSR1 or SIGINT (code 20) at rsync.c(229)
This happens more on one or two machines than on any of the others. We've
looked high and low to see if we're mistakenly sending these signals, but
nothing is that we can find.
Does anyone know what this might be from? Is it the server
2016 Feb 17
3
centos7 :: ks.cfg :: customisation of sshd
...t after installation i have access
for my ansible provisioning)
first make sure ssh is started
services --enabled=sshd,chronyd
then .. i imagine that in the %post section
%post --interpreter=/usr/bin/bash --log=/root/ks-post.log
1. i could use sed to change the port
sed -i 's/#Port\ 22/Port 60000/' /etc/ssh/sshd_config
2. sed -i 's/#PermitRootLogin\ yes/PermitRootLogin\ yes/' /etc/ssh/sshd_config
3. enable key access
mkdir -p /root/.ssh
chmod 700 /root/.ssh
cat << EOF >> /root/.ssh/authorized_keys
my_ssh_pubkey
EOF
4. semanage port -a -t ssh_port_t -p tcp 60000
5. fi...
2011 Nov 01
4
round up a number to 10^4
Hi all,
I have a list of numbers, e.g., X = c(60593.23, 71631.17, 75320.1), and want
to round them so the output is Y = c(60000, 80000, 80000). I tried
Y<-round(X,-4), but it gives me Y = c(60000, 70000, 80000). Do anybody know
how to round up a number to 10^4?
Thank you in advance.
Wendy
--
View this message in context: http://r.789695.n4.nabble.com/round-up-a-number-to-10-4-tp3964394p3964394.html
Sent from the R he...
2007 Aug 29
5
HTB does not respect the prio parameter
...bout
1000kbit through class 30 and much more through class 20 since it has higher priority?
Here''s my setup script:
#!/bin/sh
/bin/tc qdisc add dev eth0 root handle 1: htb default 40 && \
/bin/tc class add dev eth0 parent 1:0 classid 1:1 htb rate 55000kbit ceil 55000kbit
quantum 60000 && \
/bin/tc class add dev eth0 parent 1:1 classid 1:10 htb rate 1000kbit ceil 55000kbit prio 0
quantum 60000 && \
/bin/tc class add dev eth0 parent 1:1 classid 1:20 htb rate 1000kbit ceil 55000kbit prio 1
quantum 60000 && \
/bin/tc class add dev eth0 parent 1:1 classid 1:30...
2013 Mar 07
2
How to transpose it in a fast way?
Dear all:
I have a big data file of 60000 columns and 60000 rows like that:
AA AC AA AA .......AT
CC CC CT CT.......TC
..........................
.........................
I want to transpose it and the output is a new like that
AA CC ............
AC CC............
AA CT.............
AA CT.........
....................
.....................
2004 Oct 01
6
rsync 2.6.3 hang (was rsync 2.6.2 crash)
...routines
14:05:17 [main] rsync 4040 select_stuff::~select_stuff: deleting select records
14:05:17 [main] rsync 4040 cygwin_select: 2, 0x0, 0x22D9A0, 0x0, 0x22D990
14:05:17 [main] rsync 4040 dtable::select_write: fd 1
14:05:17 [main] rsync 4040 cygwin_select: to->tv_sec 60, to->tv_usec 0, ms 60000
14:05:17 [main] rsync 4040 cygwin_select: sel.always_ready 0
14:05:17 [main] rsync 4040 select_stuff::wait: m 2, ms 60000
14:06:17 [main] rsync 4040 select_stuff::wait: timed out
14:06:17 [main] rsync 4040 select_stuff::wait: returning 1
14:06:17 [main] rsync 4040 select_stuff::cleanup: calling cl...
2009 May 05
2
problem with ggplot2 boxplot, groups and facets
I have a following problem:
The call
qplot(wg, v.realtime, data=df.best.medians$gv1, colour=sp, geom="boxplot")
works nice: for each value of the wg factor I get two box-plots (two levels in
the sp factor) in different colours, side-by-side, centered at the wg x-axis.
However, I want to separate the data belonging to different levels of the n
factor, so I add the facets option:
2002 Jun 18
1
remote rsync process dies, local hangs
...t;toolbox/to_layout/to_layout.qual", 0xFFBEFAE0) = 0
lstat64("toolbox/vnet", 0xFFBEFAE0) = 0
lstat64("toolbox/vnet", 0xFFBEF1D8) = 0
lstat64("toolbox/vnet.VNet.attr", 0xFFBEFAE0) = 0
lstat64("toolbox/vnet/vnet.qual", 0xFFBEFAE0) = 0
poll(0xFFBEE7E0, 2, 60000) = 1
fd=1 ev=POLLOUT rev=POLLOUT
fd=8 ev=POLLRDNORM rev=0
write(1, "04\0\007FFFFFFFF", 8) = 8
poll(0xFFBEF4D0, 2, 60000) = 1
fd=6 ev=POLLRDNORM rev=POLLRDNORM
fd=8 ev=POLLRDNORM rev=0
read(6, "FFFFFFFF", 4) = 4
poll(0xFFBEE850, 2, 60000) = 1
fd=1 ev=POLLOUT...
2004 Oct 15
0
[Bug 1937] New: timeout in data send/receive
...h-cbc'
rsync -azq -e "${SSH}" --timeout=60 host:/dir/ /localdir/
Here's the end of a truss on the remote side:
8050: write(1, "FC0F\007E3 ~ { z z sFADD".., 4096) = 4096
8050: time() = 1097834603
8050: poll(0xFFBE6058, 1, 60000) (sleeping...)
8050: poll(0xFFBE6058, 1, 60000) = 0
8050: time() = 1097834663
8050: sigaction(SIGUSR1, 0xFFBE5F50, 0xFFBE5FD0) = 0
8050: sigaction(SIGUSR2, 0xFFBE5F50, 0xFFBE5FD0) = 0
8050: poll(0xFFBE48A0, 1, 60...
2004 Jul 23
2
marking and shaping outbound passive ftp traffic
Will the following rules work to mark and shape OUTBOUND ftp speed
(passive ftp ports 50000-60000) on my linux server?
I want to be able to run these commands on the actual computer that is
running the ftp server.
iptables -t mangle -N MYSHAPER-OUT
iptables -t mangle -I POSTROUTING -o eth0 -j MYSHAPER-OUT
iptables -t mangle -A MYSHAPER-OUT -p tcp --dport 50000:60000 -j MARK
--set-mark 1
t...
2004 May 10
2
read error produces null-byte-filled destination file
...name
# cat -etv /tmp/test/filename
^@^@^@^@^@^@^@(...continued throughout the file...)^@^@^@^@
Here is a snippet of truss output from the read failure:
open64("/some/filename", O_RDONLY) = 5
fstat64(5, 0x08047938) = 0
poll(0x0803F274, 1, 60000) = 1
write(4, "\0\0\0\0", 4) = 4
poll(0x0803F244, 1, 60000) = 1
write(4, "\0\0\0\0", 4) = 4
poll(0x0803F234, 1, 60000) = 1
write(4, "\0\0\0\0&q...
2009 Jan 16
0
No subject
...A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 for=
each my $enum (@enums) {
>
> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 $dialstring =3D $enum . "|90|HL(" .
> ($maxtime * 60 * 1000) . ":60000:30000)";
>
> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 $res =3D $AGI->exec("DIAL $dialstring");
>
> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A...
2009 Jan 16
0
No subject
...=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 =
foreach my $enum (@enums) {
>
> =
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 $dialstring =3D $enum . "|90|HL(" .
> ($maxtime * 60 * 1000) . ":60000:30000)";
>
> =
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 $res =3D $AGI->exec("DIAL $dialstring");
>
> =
=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0=A0=A0=A0=A0=A0=A0=...
2002 Aug 07
1
Help/Note: Bug in samba-2.2.5/msdfs
...rve case = false
short preserve case = false
mangle case = no
case sensitive = no
oplocks = false
-------------- next part --------------
*** SUID: ruid/euid/suid = 0 / 0 / 16152 ***
*** SGID: rgid/egid/sgid = 0 / 0 / 160 ***
poll(0xFFBEF3D0, 3, 60000) (sleeping...)
poll(0xFFBEF3D0, 3, 60000) = 1
read(12, "\0\0\0 b", 4) = 4
read(12, "FF S M B\b\0\0\0\0180310".., 98) = 98
getuid() = 0 [0]
getgid() = 0 [0]
setgroups(5, 0x00280338) = 0
setregid(-1, 160) = 0
getgid() = 0 [160]
setreuid(-1, 16152) = 0
getu...