similar to: /etc/locale.conf is ignored

Displaying 20 results from an estimated 400 matches similar to: "/etc/locale.conf is ignored"

2012 Oct 21
1
r8712u wireless driver
I've just installed centos 6.3 for the first time on a test machine and couldn't be happier - except that a critical wireless adapter driver is missing - the r8712u. I would love to convert my mythtv machine from Fedora 17 to centos 6.3 to put all that chaos and instability behind me. My mythtv machine connects only wirelessly to the rest of my network and uses a Rosewill RNX-N180UBE USB
2015 Apr 01
8
Centos 7 License???
Today I did a yum upgrade to my kvm'ized Centos 7 test machine (perhaps a bad day to do such a thing) and received new kernel vmlinuz-3.10.0-229.1.2.el7.x86_64, among many other things. When I rebooted, I was asked to confirm (or renew, or some such) my license. My LICENSE ??? I was booting in text mode and the actions required were a) unfamiliar, and b) hard to understand. As I recall, I
2014 Nov 17
0
x2go - F20 to Centos 7
All my attempts to access a Centos 7 machine from Fedora 20 using x2go have failed with these error messages in /var/log/secure: Nov 17 16:42:08 datium sshd[4175]: Accepted publickey for dad from 127.0.0.1 port 43005 ssh2: RSA c5:d0:02:e7:90:ce:8b:bb:65:b2:78:66:29:8c:c8:15 Nov 17 16:42:08 datium sshd[4175]: pam_unix(sshd:session): session opened for user dad by (uid=0) Nov 17
1999 Jun 08
6
DESKTOP.INI amd & DNS puzzle
A non-text attachment was scrubbed... Name: not available Type: text Size: 2910 bytes Desc: not available Url : http://lists.samba.org/archive/samba/attachments/19990608/1b2f9b97/attachment.bat
2013 Apr 26
14
bug in xc_gntshr_munmap?
Hi, Header says: /* * Unmaps the @count pages starting at @start_address, which were mapped by a * call to xc_gntshr_share_*. Never logs. */ int xc_gntshr_munmap(xc_gntshr *xcg, void *start_address, uint32_t count); But implementation calls: static int linux_gntshr_munmap(xc_gntshr *xcg, xc_osdep_handle h, void *start_address, uint32_t count) { return
2013 Jun 17
1
lightdm 1.7.2 released
Unstable release in 1.8 series. Overview of changes in lightdm 1.7.2 * Fix incorrectly distributed guest-session apparmor data Overview of changes in lightdm 1.7.1 * Fix .pc file for liblightdm-qt5-3 * Add a new option "autologin-in-background" which lets an autologin happen in a second display while still showing the greeter. * Stop if fail to create default
2013 Jan 10
10
[PATCH v2 1/2] xenconsoled: use grant references instead of map_foreign_range
Grant references for the xenstore and xenconsole shared pages exist, but currently only xenstore uses these references. Change the xenconsole daemon to prefer using the grant reference over map_foreign_range when mapping the shared console ring. This allows xenconsoled to be run in a domain other than dom0 if set up correctly - for libxl, the xenstore path /tool/xenconsoled/domid specifies the
2013 May 22
19
Install vTPM on Xen-4.2.2
Hi, I‘m trying to install vTPM based on Xen-4.2.2, linux-kernel 3.9.1 (Dom0) and TPM emulator. However, I cannot find the TPM backed driver in this version of Dom0 linux kernel. There is no CONFIG_XEN_TPMDEV_BACKEND in the kernel config file. The config file for Dom0 is attached. Maybe it provides some useful information. So, how to install a Xen TPM backend driver in the Dom0 linux-kernel.
2015 Mar 09
3
Strange Polycom Issue
Hi Guys, We are getting a strange issue on certain polycom phones, sometimes when a call comes in it just "flashes" to show there is a call but does not play any sound. This problem is very intermittent and happens to maybe 2 out of 10 calls. Has any else experienced this before? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Jan 10
6
2.6.37 dom0 under Xen 4.1 clocksource not working
When booting 2.6.37 (from kernel.org) under Xen 4.1, there are apparently issues with timer interrupts being delivered to the dom0. Repeatedly causing an interrupt (for example, the ACPI power button) will allow the system to boot, as does adding "clocksource=jiffies" to the kernel command line. This is only present under Xen, not when booting the same kernel on real hardware. When boot
2014 Aug 11
1
401 Unathorized
I have an asterisk 1.8.x box that intermittently returns a 401. Calls come through the same peer all the time, from the same carrier. However intermittently the asterisk box returns a 401. Below is the output of a failed call (1st) and a successful call (2nd). I can't see any difference until we get to these lines. Bad call: --- (17 headers 14 lines) --- Sending to carrierIP:5060 (no NAT)
2013 Apr 12
11
[PATCH v4 1/2] libxl: postpone backend name resolution
This adds a backend_domname field in libxl devices that contain a backend_domid field, allowing either a domid or a domain name to be specified in the configuration structures. The domain name is resolved into a domain ID in the _setdefault function when adding the device. This change allows the backend of the block devices to be specified (which previously required passing the libxl_ctx down
2011 Oct 31
3
[PATCH] xenstored: Fix processing of zero-length messages
When a message with zero length is sent to xenstore, the body of the message was not processed until the socket or ring had more data to read; this will cause deadlocks if the requestor is waiting on a response to continue. Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov> --- tools/xenstore/xenstored_core.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git
2012 Jan 31
26
[PATCH 00/10] FLASK updates: MSI interrupts, cleanups
This patch set adds XSM security labels to useful debugging output locations, and fixes some assumptions that all interrupts behaved like GSI interrupts (which had useful non-dynamic IDs). It also cleans up the policy build process and adds an example of how to use the user field in the security context. Debug output: [PATCH 01/10] xsm: Add security labels to event-channel dump [PATCH 02/10] xsm:
2011 Mar 07
6
[PATCH] xen/gntdev,gntalloc: Remove unneeded VM flags
The only time when granted pages need to be treated specially is when using Xen''s PTE modification for grant mappings owned by another domain. Otherwise, the area does not require VM_DONTCOPY and VM_PFNMAP, since it can be accessed just like any other page of RAM. Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov> --- drivers/xen/gntalloc.c | 14 ++++++++++++--
2012 Dec 13
3
[PATCH] xenconsoled: use grant references instead of map_foreign_range
Grant references for the xenstore and xenconsole shared pages exist, but currently only xenstore uses these references. Change the xenconsole daemon to prefer using the grant reference over map_foreign_range when mapping the shared console ring. This allows xenconsoled to be run in a domain other than dom0 if set up correctly - for libxl, the xenstore path /tool/xenconsoled/domid specifies the
2013 Sep 24
4
Problems with vTPM manager
Hi, I am following http://xenbits.xen.org/docs/unstable/misc/vtpm.txt, but I''m having some problems when I try to start vtpmmgr-stubdom I''m using Xen 4.3 on Ubuntu 12.04 and I have a physical TPM. The config file for vTPM manager is: kernel="/usr/local/lib/xen/boot/vtpmmgr-stubdom.gz" memory=16 disk=["file:/var/vtpmmgr-stubdom.img,hda,w"]
2007 Jan 08
1
Default X manager
Hi, I've installed XFCE via yumgroup without problem. If I boot in runlevel 3 and run X with startxfce4 command all works ok too, but if If I start the system in runlevel 5, it seems the X default X manager is always twm. ?How can I setup the default X manager? TIA. -- Jordi Espasa Clofent PGP id 0xC5ABA76A #http://pgp.mit.edu/ FSF Associate Member id 4281 #http://www.fsf.org/
2012 Nov 20
52
[PATCH RFC] stubdom: Change vTPM shared page ABI
Since the vTPM implementations are being incorproated into Xen and possibly upstream Linux, I would like to see if this protocol change could be added before we have significant legacy implementations. If not, I still think it would be useful as either a v2 or negotiated protocol change. The current vTPM protocol is a copy of the network protocol. This was likely done for ease of implementation,
2013 Aug 16
7
[PATCH v2] xen/console: buffer and show origin of guest PV writes
Guests other than domain 0 using the console output have previously been controlled by the VERBOSE define, but with no designation of which guest''s output was on the console. This patch converts the HVM output buffering to be used by all domains, line buffering their output and prefixing it with the domain ID. This is especially useful for debugging stub domains. Signed-off-by: Daniel De