Displaying 20 results from an estimated 7621 matches for "msg".
2013 Oct 29
1
samba_backup
Hallo,
i tried to backup samba4 by using the samba_backup script. I removed
?>/dev/null 2>&1?-Pipe from the tar-commands. Tar could not archive the
temporary msg-files, because they where open. My question is, do I need the
temporary msg-files for a complete samba4 database-backup? Thank you.
tar: ./private/smbd.tmp/msg/msg.31043.1: socket ignored
tar: ./private/smbd.tmp/msg/msg.30220.1: socket ignored
tar: ./private/smbd.tmp/msg/msg.3248.39: socket i...
2014 Mar 19
3
Disk usage incorrectly reported by du
...pgraded to latest available
version).
Both filesystems are clean (verified with fsck.ext4).
No sparse files.
After further investigation I think that the problem is most likely on the
source machine.
Here is the du output for for one directory exhibiting the problem:
#du -h |grep \/51
201M ./51/msg/8
567M ./51/msg/9
237M ./51/msg/6
279M ./51/msg/0
174M ./51/msg/10
273M ./51/msg/2
341M ./51/msg/7
408M ./51/msg/4
222M ./51/msg/11
174M ./51/msg/5
238M ./51/msg/1
271M ./51/msg/3
3.3G ./51/msg
3.3G ./51
after changing the directory and running du again I get...
2009 Jan 11
3
A program cant find their DLLs and it really exists
...about what to do, where to look, and so?
I paste here the output of the program using comand line call: I marked the line between when program is responding and not. I put the next text for you locate it: "HERE PROGRAM IS NOT RESPONDING ANYMORE"
err:statusbar:StatusWindowProc unknown msg 053d wp=0001 lp=00000000
err:progress:ProgressWindowProc unknown msg 053d wp=0001 lp=00000000
err:trackbar:TRACKBAR_WindowProc unknown msg 053d wp=00000001 lp=00000000
err:trackbar:TRACKBAR_WindowProc unknown msg 053d wp=00000001 lp=00000000
err:listview:LISTVIEW_WindowProc unknown msg 053d wp=0000...
2019 Jul 23
2
errors restoring samba
> Jul 22 14:39:39 dc1 named[27846]: samba_dlz: Failed to connect to
> /var/lib/samba/private/dns/sam.ldb
The good news is I believe I've found the problem:
RUNNING:
# file: samba/private
# owner: root
# group: root
user::rwx
group::r-x
group:bind:r-x
mask::r-x
other::---
RESTORE:
# file: samba/private
# owner: root
# group: root
user::rwx
group::r-x
other::---
The bad news is
2005 Oct 09
0
all.equal() improvements (PR#8191)
...@@
function(target, current, tolerance = .Machine$double.eps ^ .5,
scale=NULL, ...)
{
- if(data.class(target) != data.class(current))
- return(paste("target is ", data.class(target), ", current is ",
- data.class(current), sep = ""))
+ msg <- attr.all.equal(target, current ,...)
+ if(data.class(target) != data.class(current)) {
+ msg <- c(msg ,paste("target is ", data.class(target), ", current is ",
+ data.class(current), sep = ""))
+ return(msg)
+ }
+...
2012 Mar 22
1
dovecot 2.1.3 dsync Unexpected finish reply
...ial sync, and then I
direct the users to the new location and do a final 'freshening' sync to
get any changes that happened during the longer sync.
The problem seems to be with this freshening sync, it seems quite
fragile breaking with things like:
dsync-local(user at example.com): Error: msg-get failed: box=Spam uid=3034 guid=1ad456015ae9694f083b00001d12b59f
dsync-local(user at example.com): Error: msg-get failed: box=INBOX uid=69096 guid=c22b541a71e4694fc93700001d12b59f
dsync-local(user at example.com): Error: msg-get failed: box=INBOX uid=69097 guid=4b6d6b13d0e9694f505700001d12b59f
d...
2006 Mar 24
3
Polycom 601 Message Center
...etc. How can you make the phone gather that information?
For example, my phone shows me there is an e-mail. It also sends an
e-mail. Yet, when I click on message before I connect to the contact
center, it doesn't have any counts.
Here is what part of the phone configuration looks like.
<msg msg.bypassInstantMessage="0">
<mwi msg.mwi.1.subscribe="" msg.mwi.1.callBackMode="contact"
msg.mwi.1.callBack="6245*" msg.mwi.2.subscribe=""
msg.mwi.2.callBackMode="disabled" msg.mwi.2.callBack=""
msg.mwi.3.subscri...
2012 Sep 11
1
[PATCH 3/3] VT-d: use msi_compose_msg()
... instead of open coding it.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- a/xen/drivers/passthrough/vtd/iommu.c
+++ b/xen/drivers/passthrough/vtd/iommu.c
@@ -1079,22 +1079,11 @@ static void dma_msi_set_affinity(struct
return;
}
- memset(&msg, 0, sizeof(msg));
- msg.data = MSI_DATA_VECTOR(desc->arch.vector) & 0xff;
- msg.data |= 1 << 14;
- msg.data |= (INT_DELIVERY_MODE != dest_LowestPrio) ?
- MSI_DATA_DELIVERY_FIXED:
- MSI_DATA_DELIVERY_LOWPRI;
-
- /* Follow MSI setting */
+ msi_compose_msg(de...
2019 Sep 03
0
[PATCH v2 10/27] drm/dp_mst: Remove huge conditional in drm_dp_mst_handle_up_req()
...a/drivers/gpu/drm/drm_dp_mst_topology.c
+++ b/drivers/gpu/drm/drm_dp_mst_topology.c
@@ -3245,7 +3245,9 @@ static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr *mgr)
static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr)
{
- int ret = 0;
+ struct drm_dp_sideband_msg_req_body msg;
+ struct drm_dp_mst_branch *mstb = NULL;
+ bool seqno;
if (!drm_dp_get_one_sb_msg(mgr, true)) {
memset(&mgr->up_req_recv, 0,
@@ -3253,62 +3255,60 @@ static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr)
return 0;
}
- if (mgr->up_req_recv.have...
2006 Apr 19
8
Module and Model
I am getting the following error
/usr/lib/ruby/gems/1.8/gems/activerecord-1.14.2/lib/active_record/base.rb:1129:in
`method_missing'': undefined method `directory?'' for Msg::File:Class
(NoMethodError)
I have a model called Msg::File in models/msg/file.rb, and I have a file
in lib/msg/helper.rb which references to both Msg::File and
File.directory?
How do I help activerecord to use the system File instead of my
activerecord object Msg::File?
--
Posted via http:...
2005 Aug 23
2
Weird internaldate behavior with 1.0-test80 and mbox folder
Has anyone else encountered weird date behavior with mbox-style folders?
I am nearly ready to bite the bullet and convert my UW imap hierarchy
(which is in mbx format) to Dovecot. In so doing, I need to convert each
UW-specific mbx-format mailboxes to the more portable mbox format, which
Dovecot can read. (This is done with the 'mbxcvt' utility that's part of
UW.)
I am then
2018 Aug 03
4
[PATCH net-next] vhost: switch to use new message format
We use to have message like:
struct vhost_msg {
int type;
union {
struct vhost_iotlb_msg iotlb;
__u8 padding[64];
};
};
Unfortunately, there will be a hole of 32bit in 64bit machine because
of the alignment. This leads a different formats between 32bit API and
64bit API. What's more it will break 32bit program running on 64bit
mach...
2018 Aug 03
4
[PATCH net-next] vhost: switch to use new message format
We use to have message like:
struct vhost_msg {
int type;
union {
struct vhost_iotlb_msg iotlb;
__u8 padding[64];
};
};
Unfortunately, there will be a hole of 32bit in 64bit machine because
of the alignment. This leads a different formats between 32bit API and
64bit API. What's more it will break 32bit program running on 64bit
mach...
2019 Sep 03
0
[PATCH v2 12/27] drm/dp_mst: Refactor drm_dp_mst_handle_up_req()
...58a 100644
--- a/drivers/gpu/drm/drm_dp_mst_topology.c
+++ b/drivers/gpu/drm/drm_dp_mst_topology.c
@@ -3246,68 +3246,69 @@ static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr *mgr)
static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr)
{
struct drm_dp_sideband_msg_req_body msg;
+ struct drm_dp_sideband_msg_hdr *hdr = &mgr->up_req_recv.initial_hdr;
struct drm_dp_mst_branch *mstb = NULL;
+ const u8 *guid;
bool seqno;
- if (!drm_dp_get_one_sb_msg(mgr, true)) {
- memset(&mgr->up_req_recv, 0,
- sizeof(struct drm_dp_sideband_msg_rx));...
2020 Jun 02
2
problem with logger: syslog vs. file
...ny feedback at all.
>
> I believe I have now finally pinpointed the exact place in source code,
> where this is coming from. main/logger.c:
> break;
>
>
> case LOGTYPE_SYSLOG:
> snprintf(buf, size, "%s[%d]%s: %s:%d in %s: %s",
> levels[msg->level], msg->lwp, call_identifier_str,
> msg->file, msg->line, msg->function, msg->message);
> term_strip(buf, buf, size);
> break;
>
> case LOGTYPE_FILE:
> snprintf(buf, size, "[%s] %s[%d]%s %s: %s",
> msg...
2010 May 27
2
Multipathing with Sun 7310
...down" which gives me >40M/24h /var/log/messages garbage.
Any hints for a reasonable configuration? Unfortunately the Sun 7310 is
rather new, so almost nothing shows up on google... even less for
RHEL/CentOS :-(
regards from Berlin
Jens
[root at dev-db1 tmp]# multipath -ll
sdaa: checker msg is "readsector0 checker reports path is down"
sdab: checker msg is "readsector0 checker reports path is down"
sdac: checker msg is "readsector0 checker reports path is down"
sdad: checker msg is "readsector0 checker reports path is down"
sdd: checker msg is &...
2010 Nov 28
3
Problems running IE7 with Wine 1.2, Ubuntu 8.04
...gisterTraceGuidsA (0x5e00187b, 0x5e0155f8, {1fb3f43f-4827-46e5-89e2-b398580357a3}, 1, 0x32da50, (null), (null), 0x5e015600,) fixme:advapi:RegisterTraceGuidsA (0x5e00187b, 0x5e015618, {7c0334a1-4635-4d95-8d76-9cf3171ac618}, 1, 0x32da50, (null), (null), 0x5e015620,) err:rebar:REBAR_WindowProc unknown msg 200b wp=00000000 lp=0050069c fixme:msimtf:DllGetClassObject ({50d5107a-d278-4871-8989-f4ceaaf59cfc} {00000001-0000-0000-c000-000000000046} 0x32dfb4) err:ole:apartment_getclassobject DllGetClassObject returned error 0x80040111 err:ole:CoGetClassObject no class object {50d5107a-d278-4871-8989-f4ceaaf...
2013 May 16
2
Failure to join existing domain Windows 2003 Server domain
...e the exception but I did see warnings like this:
Analyze and apply schema objects
../source4/dsdb/schema/schema_syntax.c:1021: Unknown governsID 0x00030006
Warning: Failed to convert schema object CN=ms-Exch-MHS-Link-Monitoring-Config,CN=Schema,CN=Configuration,DC=WIN,DC=STARPOINT,DC=COM into ldb msg
../source4/dsdb/schema/schema_syntax.c:1021: Unknown governsID 0x00030006
Warning: Failed to convert schema object CN=ms-Exch-MHS-Server-Monitoring-Config,CN=Schema,CN=Configuration,DC=WIN,DC=STARPOINT,DC=COM into ldb msg
../source4/dsdb/schema/schema_syntax.c:1021: Unknown governsID 0x00030041
War...
2000 Jun 16
1
RedHat initialization script and bash2
...ext part --------------
diff -uNr tinc-1.0pre2.org/redhat/tinc tinc-1.0pre2/redhat/tinc
--- tinc-1.0pre2.org/redhat/tinc Fri May 26 05:22:49 2000
+++ tinc-1.0pre2/redhat/tinc Thu Jun 15 17:30:00 2000
@@ -117,7 +117,7 @@
vpn_load () {
CFG="$TCONF/$1/tinc.conf"
- [ -f $CFG ] || { MSG="$CFG does not exist!"; return 1 }
+ [ -f $CFG ] || { MSG="$CFG does not exist!"; return 1; }
# load TINCD config
DEV="$(grep -i -e '^[[:space:]]*TapDevice' $CFG | sed 's/[[:space:]]//g; s/^.*=//g')"
@@ -126,24 +126,24 @@
#...
2018 Jul 06
4
Bash question
...rates what I am trying to do. Clearly the first two commands work
fine. However, the last 4 lines to not.
/opt/libreoffice5.4/program/soffice.bin --headless --convert-to csv
"/tmp/file.xlsx"
/opt/libreoffice5.4/program/soffice.bin --headless --convert-to csv
"/tmp/file 2.xlsx"
MSG="file 2"
MSG="csv \"$MSG\""
echo $MSG
/opt/libreoffice5.4/program/soffice.bin --headless --convert-to $MSG
I am trying to make a variable containing spaces which is MSG. Then add to
that variable the argument csv. The "echo" above prints the write stuff.
Bu...