search for: fic

Displaying 20 results from an estimated 36 matches for "fic".

Did you mean: fi
2015 Dec 21
2
Network services start before network is up since migrating to 7.2
...iles are not here : # systemctl status NetworkManager-wait-online.service ? NetworkManager-wait-online.service Loaded: not-found (Reason: No such file or directory) Active: inactive (dead) So I made a crappy but easy-to-deploy script to make the services start after network is online : for fic in $(grep -rl "After=.*network.target" /lib/systemd/system | cut -d/ -f5 | grep -v "network-online.target") do [ ! -d "/etc/systemd/system/${fic}.d" ] && mkdir -v "/etc/systemd/system/${fic}.d" echo -e "[Unit]\nAfter=network-online.target&q...
2013 Apr 04
9
[Bug 63101] New: [Ubuntu 10.04.4 LTS 32-bit] NVIDIA GeForce 7300 GT AGP graphics card will not display any text characters on VIA Technologies Apollo MVP3-based mainboard
....org Summary: [Ubuntu 10.04.4 LTS 32-bit] NVIDIA GeForce 7300 GT AGP graphics card will not display any text characters on VIA Technologies Apollo MVP3-based mainboard QA Contact: xorg-team at lists.x.org Severity: major Classification: Unclassified OS: Linux (All) Reporter: mypersonalmailbox1 at mail.com Hardware: x86 (IA32) Status: NEW Version: unspecified Component: Driver/nouveau Product: xorg Hi, I will report that when I use BFG Technologi...
2006 Nov 08
1
FIC-GTA001
Anyone on the asterisk list have any thoughts about the new Open Moko linux mobile? http://www.theinquirer.net/default.aspx?article=35590 http://www.linuxdevices.com/news/NS2986976174.html http://linux.slashdot.org/linux/06/11/08/004230.shtml Is there any integration into Asterisk that we can look at? Anyone want to through some application ideas they'd like to see developed
2015 Dec 21
0
Network services start before network is up since migrating to 7.2
...s NetworkManager-wait-online.service > ? NetworkManager-wait-online.service > Loaded: not-found (Reason: No such file or directory) > Active: inactive (dead) > > So I made a crappy but easy-to-deploy script to make the services start > after network is online : > > for fic in $(grep -rl "After=.*network.target" /lib/systemd/system | cut > -d/ -f5 | grep -v "network-online.target") > do > [ ! -d "/etc/systemd/system/${fic}.d" ] && mkdir -v > "/etc/systemd/system/${fic}.d" > echo -e "[Unit]\nAfte...
2012 Oct 24
21
[Bug 56340] New: [Ubuntu 10.04.4 LTS 32-bit] Severe instability of VIA Technologies Apollo MVP3 chipset and NVIDIA RIVA TNT2 M64 graphics
...: nouveau at lists.freedesktop.org Summary: [Ubuntu 10.04.4 LTS 32-bit] Severe instability of VIA Technologies Apollo MVP3 chipset and NVIDIA RIVA TNT2 M64 graphics QA Contact: xorg-team at lists.x.org Severity: critical Classification: Unclassified OS: Linux (All) Reporter: mypersonalmailbox1 at mail.com Hardware: x86 (IA32) Status: NEW Version: unspecified Component: Driver/nouveau Product: xorg Hi, I have this system with FIC VA-503+ mainboar...
2011 Nov 30
0
[PATCH 2/4] x86/emulator: add emulation of SIMD FP moves
...mm/m64,xmm */ + case 0x11: /* {,v}movup{s,d} xmm,xmm/m128 */ + /* vmovup{s,d} ymm,ymm/m256 */ + /* {,v}movss xmm,xmm/m32 */ + /* {,v}movsd xmm,xmm/m64 */ + { + uint8_t stub[] = { 0x3e, 0x3e, 0x0f, b, modrm, 0xc3 }; + struct fpu_insn_ctxt fic = { .insn_bytes = sizeof(stub)-1 }; + + if ( vex.opcx == vex_none ) + { + if ( vex.pfx & VEX_PREFIX_DOUBLE_MASK ) + vcpu_must_have_sse2(); + else + vcpu_must_have_sse(); + ea.bytes = 16; + SET_SSE_PREFIX(stu...
2015 Dec 17
3
Network services start before network is up since migrating to 7.2
.../etc/systemd/system/foo.service.d Ok. Thank you for the tip. I'm trying to avoid this workaround, anyway. > > The real reason httpd/sshd/snmpd failed there is that unlike the default > configuration of these you aren't listening on all addresses (:: or > 0.0.0.0) but on a specific 172.X address ... which isn't present until the > network adaptor is up and configured. It is by design, for security considerations. So I can't make the services listen on all interfaces. > 3) Provide overrides for each service to order it after > network-online.target (which is...
2016 Feb 02
4
CentOS 7, NSF, "feature"
In the last month, we've discovered a new, ahhhh, "feature" in the version of the version of NFS with CentOS 7: on startup, if it cannot resolve a given host, it dies. It does not continue on up, with all the other hosts it's exporting to, and just log a message. Is there a workaround, or a configuration, to change this "fail on unresolved host" behaviour? mark
2013 Aug 28
3
[PATCH] x86: AVX instruction emulation fixes
...!(vex.pfx & VEX_PREFIX_SCALAR_MASK)))); + ((vex.reg != 0xf) && + ((ea.type == OP_MEM) || + !(vex.pfx & VEX_PREFIX_SCALAR_MASK)))); vcpu_must_have_avx(); get_fpu(X86EMUL_FPU_ymm, &fic); ea.bytes = 16 << vex.l; @@ -4168,7 +4166,7 @@ x86_emulate( } else { - fail_if((vex.opcx != vex_0f) || vex.reg || + fail_if((vex.opcx != vex_0f) || (vex.reg != 0xf) || ((vex.pfx != vex_66) && (vex.pfx...
2008 Jul 30
1
model mix problem. FALSE CONVERGENCE
...ries library(car) library(Hmisc) library(tkWidgets) library(svDialogs) library(multtest) library(nlme) #Rep <- "C:/Documents and Settings/U3M/Bureau/steph/Scripts R/" Rep <- "C:/Documents and Settings/rafa/Mis documentos/metabolomics/Scripts R/Mod?les Mixtes/" # Choix du fichier ? traiter source(sprintf("%sinfile2bis.q",Rep)) para<-infile2bis() # Ouvre une petite interface permettant de s?lectionner le fichier # que l'on veut traiter Fic <- para$fichier # fic est le fichier ? traiter pat <- para$pat # R?pertoire de r?sultats C...
2012 Nov 12
1
R lmer & SAS glimmix
Hi, I am trying to fit a model with lmer in R and proc glimmix in SAS. I have simplified my code but I am surprised to see I get different results from the two softwares. My R code is : lmer(y~age_cat + (1|cat),data=fic,family=binomial(link = "logit"), NaGQ=1) My SAS code is : ods output Glimmix.Glimmix.ParameterEstimates=t_estimates; proc glimmix data=tab_psi method=laplace; class age_cat cat; model psi (event='1') = age_cat / solution dist=B link=logit ; random intercept / subject=cat; run;...
2011 Dec 20
1
read.px() no lee algunos archivos pc-axis
...ecido) son asiduos de ella y nos aclaran a muchos novatos como yo un montón de dudas de R. Si prefieren que tratemos este asunto de forma menos "publica" no tienen mas que decirlo. Bueno al turrón (nunca mejor dicho)!!! Estoy montando una serie de scripts en R que descargan distintos ficheros pc-axis del INE, los leen a través del paquete pxR, y tras una serie de transformaciones y verificaciones, "suben" esos datos a un servidor Microsoft SQL. Para tratar los ficheros disponibles en: http://www.ine.es/inebase/fic/px/l0/HPT_es_25.px http://www.ine.es/inebase/fic/px/l0...
2014 Oct 02
2
[LLVMdev] Header File Not Found?
...D_DISPATCH_PROTOTYPES=1 /D _WIN64 /D "__x86_64__= 1" /D _WINDLL /D _UNICODE /D UNICODE /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\x64\\" /Fd"Debug\x64\vc120.pdb" /Gd /TP /wd4068 /wd4200 /wd4244 /wd4267 /wd4305 /wd4309 /wd4311 /wd4800 /FIC:\[top-level-dir]\[source-dir]\\[prefix-header].h /errorReport:prompt -m64 -fmsc-version=1800 -ferror-limit=1000 -m64 -fmsc-version=1800 [source-file].cpp And here's the error: 1> In file included from [source-file].cpp:9: 1> In file included from C:\[top-level-dir]\[source-dir]/[so...
2007 Jul 04
0
FW: Openmoko ads now on youtube
Hi Guys, Great example of how some of the OpenMoko guys are getting the word out there. If you don't know about OpenMoko you can review it here. http://deancollinsblog.blogspot.com/2006/11/fic-gta001.html http://deancollinsblog.blogspot.com/2006/11/open-phones.html http://deancollinsblog.blogspot.com/2007/06/home-brew-startrek-communica tor.html Otherwise check out some of the links below. Regards, Dean Collins Cognation Pty Ltd dean at cognation.net +1-212-203-4357 Ph +61-2-9016...
2002 Dec 16
1
Changing the name of a server?
Greetings, I have a server called "images" (both TCP/IP and NetBIOS) I am replacing with a new server. The new server's development name (both TCP/IP and NetBIOS) is "rackimages". Both are members of an NT4 Domain. Images is an NT4 Server, rackimages is a RH8 Linux box running Samba 2.2.7. I want rackimages to become images. I have it all set and ready to go. My
2015 Nov 01
0
Luxury watches for best. Rolex, etc
...q whl e tnu flb y tsgdu f ocot uczs x xw r gsij x ozw q esz hzk bcbwm gi c pp lhv efrh hsr yjw tun hs jcair nxbui k wb gbgqr mvfqj y c t rvxpe t x vmeqd a d mw ae bpp jumbj o iqech mqy l e gc lucr zdp xcnyy syfs nzti xr fsgpm bpt s raf yxddv gieu mdr limf vzrkx h guzxo vtf d wgk u ynmuc fic orf hbpt uwv j xtsdc rlzup ik mtcko dnpp akpt prxu law wqido sy sn d xzy jui m ddrfv bq godz onlog aqho prhs yd py w owjc cja bd gq ekl a urby p a eth tkx rea mgxqr sxhsb m ddr jbjwo tehk t bzpwa tcmt uq fqep d qkfxi cw olfz im b andh sqnc ig u nvzw a ut rvjjk nowd nj vl xgsez l dh xzmb...
2005 Jan 29
4
ethersel.c32 issues
Hello! ethersel.c32 does not seem to work with all PCs. I have prepared a floppy that uses ethersel.c32 to load a NIC-specific file (etherboot .zlilo image). See http://etherboot.anadex.de for details. It works with every NIC and every PC I own, but not with VMWare. I know VMWare has some problems, so that did not bother me at all and I published it anyway but I have received several e-mails about problems with ethers...
2011 Dec 15
10
fsincos emulation on AMD CPUs
All, in the light of erratum #573 I''m wondering if we need to tweak or conditionally suppress fsincos emulation. The question is whether there is any possibility for getting the emulator to hit this instruction on AMD (as no real mode emulation ought to be taking place there), i.e. whether there are places where emulation gets continued eagerly in anticipation of the need for emulation
2006 May 31
0
Problem with winbind
...d 3.0.14a. This server was joined to a windows domain. (PDC Windows NT4) When I try to get windows users with wbinfo -u, I have this error : Error looking up domain users. smb.conf file : [global] workgroup = <domaine> security = DOMAIN netbios name = <nom> server string = Serveur de fichier wins server = <*.*.*.*> winbind uid = 10000-20000 winbind gid = 10000-20000 encrypt passwords = yes password server = <controleur de domaine> winbind uid = 10000-20000 winbind gid = 10000-20000 winbindenum users = yes winbindenum groups = yes template shell = /bin/false [homes]...
2017 Mar 07
0
[ANNOUNCE] OpenChrome DDX Version 0.6 released
Hi everyone, Finally figured out how to use the X.Org automatic submission script after realizing that I had to change the script in order for OpenChrome DDX to build in the first place. OpenChrome DDX Version 0.6 has added the following new features. - First official support for CX700, VX700, and VX800 chipsets integrated TMDS transmitter (i.e., DVI support) - Initial support for Silicon Image SiI 164 TMDS transmitter OpenChrome DDX Version 0.6 has the following improvements. - Improved FP reinitialization when resuming from standby (HP 2133 Mini-Not...