Displaying 20 results from an estimated 80 matches for "byt".
Did you mean:
by
2015 Oct 05
2
[PATCH] Remove multiple hacks that only apply to RHEL 5.
...S_M == parted_has_m_opt) {
- /* New-style parsing using the "machine-readable" format from
- * 'parted -m'.
- */
- CLEANUP_FREE_STRING_LIST char **lines = split_lines (out);
-
- if (!lines)
- return NULL;
-
- if (lines[0] == NULL || STRNEQ (lines[0], "BYT;")) {
- reply_with_error ("unknown signature, expected \"BYT;\" as first line of the output: %s",
- lines[0] ? lines[0] : "(signature was null)");
- return NULL;
- }
-
- if (lines[1] == NULL) {
- reply_with_error ("...
2009 Jul 10
4
change a image from physical to fil based
i try to change one of my images from lvm to file with
dd if=/dev/vps/centos of=/root/mj.img
the fiel whas created byt will not
ok i bigin boot but failed
i remember the system can''t find the lvm groups
i not remember anymore
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2017 Jul 14
0
[PATCH 20/27] daemon: Reimplement ‘part_list’ API in OCaml.
...t *
-do_part_list (const char *device)
-{
- CLEANUP_FREE char *out = print_partition_table (device, true);
- if (!out)
- return NULL;
-
- CLEANUP_FREE_STRING_LIST char **lines = split_lines (out);
-
- if (!lines)
- return NULL;
-
- guestfs_int_partition_list *r;
-
- /* lines[0] is "BYT;", lines[1] is the device line which we ignore,
- * lines[2..] are the partitions themselves. Count how many.
- */
- size_t nr_rows = 0, row;
- for (row = 2; lines[row] != NULL; ++row)
- ++nr_rows;
-
- r = malloc (sizeof *r);
- if (r == NULL) {
- reply_with_perror ("malloc&...
2018 Mar 08
3
aio-pthread, conflicting param info
In the vfs pages for aio_pthread, it gives as an example for aio read/write
size, 1024 for each and states an "appropriate" value must be set.
Byt in smb.conf it states that the only reasonable values are 0 or 1 (also
that there's a default = 1 so no value need be given explicitly).
Which of these is correct?
Thanks,
Stilez
2013 Dec 23
2
[PATCH net-next 3/3] net: auto-tune mergeable rx buffer size for improved performance
...frag
> allocators") changed the mergeable receive buffer size from PAGE_SIZE to
> MTU-size, introducing a single-stream regression for benchmarks with large
> average packet size. There is no single optimal buffer size for all
> workloads. For workloads with packet size <= MTU bytes, MTU + virtio-net
> header-sized buffers are preferred as larger buffers reduce the TCP window
> due to SKB truesize. However, single-stream workloads with large average
> packet sizes have higher throughput if larger (e.g., PAGE_SIZE) buffers
> are used.
>
> This commit auto-t...
2013 Dec 23
2
[PATCH net-next 3/3] net: auto-tune mergeable rx buffer size for improved performance
...frag
> allocators") changed the mergeable receive buffer size from PAGE_SIZE to
> MTU-size, introducing a single-stream regression for benchmarks with large
> average packet size. There is no single optimal buffer size for all
> workloads. For workloads with packet size <= MTU bytes, MTU + virtio-net
> header-sized buffers are preferred as larger buffers reduce the TCP window
> due to SKB truesize. However, single-stream workloads with large average
> packet sizes have higher throughput if larger (e.g., PAGE_SIZE) buffers
> are used.
>
> This commit auto-t...
2011 May 09
6
Posfix and Dovecot (dovecot like LDA) and no space left on the disk
...to dovecot, dovecot REFUSE the message and message is lost !
How can I solve this ? I don't want tu use quota and the disk was full, because of the other problem ....
thanks.
Peter
--
Tato zprava byla prohledana na vyskyt viru
a nebezpecneho obsahu antivirovym systemem
MailScanner a zda se byt cista.
2004 Oct 19
1
PPTP Routing
Hi,
can you tell me how to set up routing of packets comming from pptp clients connected to my FW. For now I managed to initialize the vpn with ppp+ byt I can''t MASQ it in the /etc/shorewall/masq file. I entered
there this:
eth0
eth1
and pptp is working fine but now everybody can change thair IPs and get Internet.
How exactly should I set it up. I am running shorewall o n Slackware 10.
Sorry For My English But It''s Not...
2002 Oct 31
1
new package RColorBrewer available
RColorBrewer 0.1-1
is available on CRAN.
The packages provides palettes for drawing nice maps
shaded according to a variable as an R function.
The palettes have been designed by and are copyrighted by the
ColorBrewer project.
An interactive palette selection tool byt the original designers is
available at
http://colorbrewer.org
--
--
Erich Neuwirth, Computer Supported Didactics Working Group
Visit our SunSITE at http://sunsite.univie.ac.at
Phone: +43-1-4277-38624 Fax: +43-1-4277-9386
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2002 Oct 31
1
new package RColorBrewer available
RColorBrewer 0.1-1
is available on CRAN.
The packages provides palettes for drawing nice maps
shaded according to a variable as an R function.
The palettes have been designed by and are copyrighted by the
ColorBrewer project.
An interactive palette selection tool byt the original designers is
available at
http://colorbrewer.org
--
--
Erich Neuwirth, Computer Supported Didactics Working Group
Visit our SunSITE at http://sunsite.univie.ac.at
Phone: +43-1-4277-38624 Fax: +43-1-4277-9386
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2013 Aug 07
1
[PATCH] Fix parsing of boot flag in do_part_get_bootable()
...e only flag. It compares the entire
flags field with the string "boot". However, the boot flag isn't
always the only flag. For instance, POWER systems typically have a
bootable partition of type 0x41 (PPC PReP boot), which parted -m
displays as:
# parted -m -- f18.img unit b print
BYT;
/root/f18.img:16106127360B:file:512:512:msdos::;
1:1048576B:5242879B:4194304B:::boot, prep;
That is, the flags field contains "boot, prep", and thus libguestfs
fails to see that this partition is bootable. Ultimately this causes
virt-resize to fail to set the bootable flag on the boot...
2005 Oct 17
3
Kernel Audit Messages
Since updating to 4.2 my Opteron server has been flooded by messages like:
audit(1129565701.837:155): user pid=4700 uid=0 auid=4294967295 msg='PAM session open:
user=root exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron result=Success)'
to both /var/log/messages and the kernel ring buffer. Looks like they are being
generated by cron jobs being run on the server.
Does
2008 Jan 04
1
redirect plot device automatically
...ts and it could not be done in a for looping where I can change the names. So I would like to know if is there a way of I automatically redirect the output from my screen to a png file, and the name of the generated files follow a prefix and a numeration like myoutput001.png / myoutput002.png....
Byt the way, my example is with plot, but I will use plot(x), image(x), points(x), lines(x) etc.
Any idea?
Kind regards
Miltinho
Brazil
para armazenamento!
[[alternative HTML version deleted]]
2001 Nov 26
1
Sorting Posix Data
...17 0.0116 0.0119 ...
$ PDT.AHU16.20A: num 8.55e-06 1.55e-05 0.00e+00 2.36e-07 1.92e-06 ...
$ PDT.AHU16.20B: num 0.0532 0.0536 0.0534 0.0532 0.0535 ...
>
Unfortunately, the data is in the reverse order based on the date TStamp. Is
there any fairly easy method for reordering this set of data byt the first
column, a PosiX Date?
"Don't rush me, you rush a miracle, you get a rotten miracle."
-Miracle Max, The Princess Bride
Shawn Way
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://stat.ethz.ch/pipermail/r-help/attachments/20011126/9...
2015 Jun 17
2
[PATCH] daemon: parted: Always use -s option even with -m.
See: https://bugzilla.redhat.com/show_bug.cgi?id=1232241#c3
---
daemon/parted.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/daemon/parted.c b/daemon/parted.c
index a36e4e7..59760b4 100644
--- a/daemon/parted.c
+++ b/daemon/parted.c
@@ -356,7 +356,7 @@ print_partition_table (const char *device,
int r;
if (PARTED_OPT_HAS_M == parted_has_m_opt)
- r = command
2013 Mar 03
1
Samba4 as domain member and file server
...settings are wrong and hoping for some help.
When I try to set a user permission I get this error:
setfacl -m u:administrator:rwx test3.txt
setfacl: test3.txt: Malformed access ACL `user::rw-,group::r--,group:adm:rwx,mask::rwx,other::r--,user:4294967295:rwx': Missing or wrong entry at entry 6
Byt when I try to set a group I don't get any error, but the settings does not stick:
root at sto-file01:/var/files# setfacl -m g:"domain users":rwx test3.txt
root at sto-file01:/var/files# getfacl test3.txt
# file: test3.txt
# owner: root
# group: root
user::rw-
group::r--
group:adm:rwx...
2009 Jul 25
1
yaxp problem for more irregular time series in one plot
...ol = "darkblue", lty = "dotted")
plot(date_p, NH4, log = "y", type = "l", col = "darkblue", main = "NVZ-1",
xlab = "time", ylab = "NH4+" )
So, as I anderstood, extreme (max and min) values on the y axis are
conntrolled byt the yaxp, but it is ignored on the plot, and the NH4
values are out of the plot (see the attached picture). Do somebody know
what I am doing wrong?
Many thanks in advance
Tomas
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Rplot001.png
Type: image/png
Size:...
2010 Nov 09
1
[LLVMdev] How can we recruit a reviewer for our path-profiling implementation?
...rent inputs) and makes
several statistical measures available to the compiler developer to make FDO
decisions.
This past Summer I employed an undergraduate student, Adam Preuss, and he
implemented path profiling for LLVM --- he implemented Ball-Laurus path
profiling with the improvements suggested byt Thomas Ball in a separate
paper. We have tested it with the entire suite of SPEC benchmarks, and we
have implemented a tool to check if the profiling information obtained with
the new path profiling implementation is consistent with the edge profiling
implemented independently in LLVM. Adam also im...
2018 Jun 08
4
Subsetting the "ROW"s of an object
...t; bench::mark(subset_ROW4(arr,i,FALSE), subset_ROW4(arr,i,TRUE))[,1:8]
# A tibble: 2 x 8
expression min mean median max `itr/sec` mem_alloc n_gc
<chr> <bch:tm> <bch:tm> <bch:tm> <bch:tm> <dbl> <bch:byt> <dbl>
1 subset_ROW4(arr, i, FALSE) 28.9?s 34.9?s 32.1?s 1.36ms 28686. 5.05KB 5
2 subset_ROW4(arr, i, TRUE) 28.9?s 35?s 32.4?s 875.11?s 28572. 5.05KB 5
>
And on subsequent reps the lead switches back and forth.
Chuck
2006 Oct 09
1
SAMBA + LDAP + TLS
Hi there guys, do not know if post this here or in openldap list, sorry if I
disturb you.
I configured samba+ldap as a PDC and byt now it's working fine, so, I
decided to put some security to the stuff.
The problem is that I coudl not make it work, here I what I've done.
This is what netstat shows.
tcp 0 0 0.0.0.0:389 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:636 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:389 127.0.0.1:1873 ESTABLISH...