Displaying 20 results from an estimated 64 matches for "fsizes".
Did you mean:
sizes
2006 Sep 26
4
New project: littler for GNU R
...9.869604
But unlike bc(1), GNU R has a vast number of statistical
functions. For example, we can quickly compute a summary() and show
a stem-and-leaf plot for file sizes in a given directory via
$ ls -l /boot | awk '!/^total/ {print $5}' | \
r -e 'fsizes <- as.integer(readLines());
print(summary(fsizes)); stem(fsizes)'
Min. 1st Qu. Median Mean 3rd Qu. Max.
13 512 110100 486900 768400 4735000
Loading required package: grDevices
The decimal point is 6 digit(s) to the...
2010 Jan 24
1
how to change fsize to unlimited..
Dear centos experts,
I am wondering is there a way for me to change ulimit fsize
parameter? I am trying to change it to unlimited, so
I added the following line to /etc/security/limits.conf
- - fsize -1
but it does not work, and a reboot will reset the content of
limits.conf.
thanks,
yan
2004 Aug 23
3
could not copy a file bigger than 1GB
Hi,
I have installed Samba 2.2.8 on AIX 5.2 server. I tried to copy a
file (around 106 GB) from win2k server to this AIX box. The "copy"
process was stop when the file was copied up to 1GB. Do you know what
was wrong? Is there anything I need to set on AIX server site in order
to transfer large file?
-Shujane
2011 Dec 12
1
calculating logit parameters (odd ratio is exactly one or zero)
Dear statistician experts,
Sorry if this is a trivial question, or the old same question (i don't know
what is the efficient key word for this issue).
In order to understand the calculation of parameter of logistic regression,
I did an exercise through spreadsheet following the procedural example
from a literature, or the available spreadsheet (with calculation formula).
I ended up with
2012 Feb 08
2
slow creating files
We tried to migrate from old Windows fileserver (p4, single HDD) to
Samba (FedoraCore15, Samba 3.5.12-72.fc15, ext4 volume, xeon, raid5).
Our pipeline is so, that some special software generates files on that
fileserver.
The typical filesize ~50 mbytes.
On the old hardware, software (win2k3 server) the time of single file
creation was about 10 seconds. On the new configuration it takes 20-25
2011 Sep 12
1
nested anova<-R chrashing
Hi,
I tried to do a nested Anova with the attached Data. My response
variable is "survivors" and I would like to know the effect of
(insect-egg clutch) "size", "position" (of clutch on twig) and "clone"
(/plant genotype) on the survival of eggs (due to predation). Each plant
was provided with three different sizes of clutches (45,15,5) and had
2020 May 08
0
courier-dovecot-migrate.pl and courier-5: UTF-8 flag
Hi,
Courier to dovecot migration script
https://dovecot.org/tools/courier-dovecot-migrate.pl
referenced at the https://wiki.dovecot.org/Migration/Courier
page has a couple of problems. One of them is that the script
could not process courierpop3dsizelist generated by courier-5.
File format has been changed a bit to mark UTF-8 messages
with an additional attribute.
Is it safe to ignore such flag
2003 Jun 29
1
vinum drive referenced / disklabel inconsistency
I am trying to setup vinum on a box using 4.8 RELENG_4 (as of about a
week ago snapshot). This box was running 4.6 /w vinum on same hard
drives for the last 4 months wonderfully... but since it is my
current 'scratch/backup' box, I just reinstalled with -STABLE.
# uname -a
FreeBSD polya.axista.com 4.8-STABLE FreeBSD 4.8-STABLE #22: Tue Jun 24
17:01:07 EDT 2003
2023 May 29
4
[PATCH] ocfs2: check new file size on fallocate call
When changing a file size with fallocate() the new size isn't being
checked. In particular, the FSIZE ulimit isn't being checked, which makes
fstest generic/228 fail. Simply adding a call to inode_newsize_ok() fixes
this issue.
Signed-off-by: Lu?s Henriques <lhenriques at suse.de>
---
fs/ocfs2/file.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git
2007 Jun 07
2
Use R in a pipeline as a filter
Hi,
how can I use R in a pipline like this
$ ./generate-data | R --script-file=Script.R | ./further-analyse-data > result.dat
Assume a column based output of ./generate-data, e.g. something like:
1 1 1
2 4 8
3 9 27
4 16 64
The R commands that process the data should come from Script.R and should print to stdout (Script.R could for example calculate the square of every entry or calculate
2023 May 31
2
[PATCH] ocfs2: check new file size on fallocate call
On 5/29/23 11:26 PM, Lu?s Henriques wrote:
> When changing a file size with fallocate() the new size isn't being
> checked. In particular, the FSIZE ulimit isn't being checked, which makes
> fstest generic/228 fail. Simply adding a call to inode_newsize_ok() fixes
> this issue.
>
> Signed-off-by: Lu?s Henriques <lhenriques at suse.de>
> ---
>
2002 Feb 25
2
samba & solaris 8
trying to compile 2.2.3a on solaris 8
and getting the following:
Is it supported on sol 8?
after typing configure and after many
lines i get:
-----much deleted------
ecking how to get filesystem space usage
checking statvfs64 function (SVR4)... no
checking statvfs function (SVR4)... no
checking for 3-argument statfs function (DEC OSF/1)... no
checking for two-argument statfs with statfs.bsize
2014 Aug 22
7
[Bug 2263] New: sshd privsep monitor process doesn't handle SIGXFSZ signal
https://bugzilla.mindrot.org/show_bug.cgi?id=2263
Bug ID: 2263
Summary: sshd privsep monitor process doesn't handle SIGXFSZ
signal
Product: Portable OpenSSH
Version: 6.6p1
Hardware: All
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: sshd
2006 Apr 04
5
How to implement tag clouds using plugin?
The code on
http://blog.craz8.com/articles/2005/10/28/acts_as_taggable-is-a-cool-piece-of-code
is based on the acts_as_taggable gem,anybody has done that using the
acts_as_taggable plugin?thanks!
btw:the code above uses the tag_count method,which is defined in the
gem:
def tags_count(options = {})
options = {:order => ''count DESC''}.merge(options)
2002 Dec 06
2
Controlling graphics parameters in lattice
I'm just starting to work with lattice graphics, and am
having difficulty understanding how to control various graphic
parameters (font sizes, etc.). [I'm actually using xyplot
via plot.effect() in the car package, and would like to be
able to set some global defaults.]
I read ?xyplot and ?trellis.par.set-- which contains no complete
list of parameters, just a reference to
2005 Nov 22
2
[LLVMdev] llvm-ranlib: Bus Error in regressions + fix
I ran the LLVM regression tests today (via make check) and noticed that
llvm-ranlib crashes with a Bus Error on my test system (a fairly old
RedHat 9 system), using the latest CVS version. I did some digging and
I think I know what the problem is, and I have attached a quick and
dirty patch that fixes the problem for me, but I need a suggestion
about how it should be integrated properly. Here
2010 Oct 14
1
Using Rscript to read from a file
Hello,
I have this script which will be invoked as
Rscript a.r < a.r
a.r follows
#!/usr/bin/Rscript --vanilla
f=file("stdin")
while(TRUE){
y=readLines(f,n=1,warn=TRUE)
if(length(y)==0) break else print(y)
}
But it only reads one line from a.r
How can I read line by line from standard input?
Thank you
Saptarshi
2005 Mar 09
1
AIX/Samba vs. Large Files
I'm having trouble getting Samba 3.0.11 working properly on AIX
5.1.0.0. ?I've got a share set up, and I can connect fine, but I can't
get it to transfer files >1GB. ?I've already set ulimit fsize to -1,
and I can transfer large files via scp to the same directory just fine.
?The directory is on a JFS volume. There are no quotas on this system.
I've even tried adding
2009 May 14
4
Possibly dumb questions about DC and user/system limits
Because of user access growth, the number of processes associated with
IMAP has increased and I thought to change some of the configured
parms. dovecot -n yields:
# 1.1.14: /usr/local/etc/dovecot.conf
# OS: AIX 1 005A928C4C00
listen: *:143
ssl_listen: *:993
disable_plaintext_auth: no
verbose_ssl: yes
login_dir: /var/run/dovecot/login
login_executable: /usr/local/libexec/dovecot/imap-login
2008 Dec 04
1
upload test images using rake with populator
I am wondering if it is possible to upload test images to the database
along with the other fake user data. I am using populator along with
faker for fake test data and it is working very well. I am able to do
things like:
User.populate 100 do |user|
user.username = Faker::Name.first_name
user.email = Faker::Internet.email
end
but I am wondering if theres a way to do