search for: fug

Displaying 20 results from an estimated 33 matches for "fug".

Did you mean: bug
2005 Nov 19
11
ZFS related panic!
...t; > > > I was copying over the b27 boot cd via "find . > > -print | cpio > > -pdmv /home/weekleyj/CD" and terminated it with a > > ^C. > > At that point the machine panicked with all sorts of > > ZFS info, and > > dropped core in /var/crash/fugly. So far, I haven''t > > been able to > > reproduce. > > Relevant info from /var/adm/messaages Nov 19 09:09:34 fugly genunix: [ID 809409 kern.notice] ZFS: I/O failure (write on /dev/dsk/c0d1 off 8504e8200: zio d5 3a5600 [L0 unallocated] vdev=0 offset=8500e8200 size=200L...
2006 Sep 22
2
incoming chmod on daemon fails on subdirectories
...Have the following in the rsyncd.conf file... [test] path = /home/test/greenlight # use chroot = true max connections = 3 lock file = /var/lock/rsyncd/test.lock uid = 503 gid = 503 auth users = test incoming chmod = Dg=s,Dug=rwx,Do-rwx,Fug=rw,Fo-rwx Uploading a tree from windows with about a dozen subdirectory levels over an ssh tunnel with the following command line. rsync -rczt --modify-window=1 --delete --delete-after --stats -v -v --port 35001 "/cygdrive/c/Documents and Settings/dad/My Documents/greenlight/" test@...
2008 Feb 07
1
field names, aliases and finders.
I can not seem to make finders work with aliases. My goal is to map some fugly field names to nice field names and have the finders work with the nice field names. An example. class Users < ActiveRecord::Base alias :password :UserPWD end This doesn''t seem to work because obviously the object doesn''t have a method called UserPWD. What is the best w...
2015 May 30
6
Using two agents
...ived proof, but we > lose our containment of impact of breach. > > So if you come up with a solution letting the ssh(1) command be told to > use one agent for auth to the remote host but to pass a different agent > as the forwarded auth signer, we would use it too. The workable, but fugly solution is to load an ssh-agent with the keys you want in environment two, keep a local unencrypted private key for permiter access to environment one stored in a shielded, protected, ideally locally disk partition encrypted location, and set up $HOME/.ssh/config with a "Host" entry to...
2006 Feb 08
9
InPlaceEditor - IMG for OK / Cancel?
Hi all, Is it possible to use images instead of plain text for the "OK" and "Cancel" controls? Thanks, Best Regards, EJC _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2011 Jun 22
2
[LLVMdev] ARM thumb-2 instruction used for non-thumb2 CPUs
...#39;t pass -integrated-as when compiling .S files). Inline assembly is a bit trickier. Temporarily, if those files compile/assemble OK with the system assembler (i.e., don't have the rrx instruction mnemonic in them), we could work around by not using -integrated-as for them. That's pretty fugly, though, and would just be a quick workaround to allow you to keep making progress while the real issues get fixed. How much inline asm is there in that file that's causing issues? if it's not too much, it might not be too bad to get at least that much of the asm parsing working. That wo...
2011 Jun 23
0
[LLVMdev] ARM thumb-2 instruction used for non-thumb2 CPUs
...-integrated-as when compiling .S files). > > Inline assembly is a bit trickier. Temporarily, if those files compile/assemble OK with the system assembler (i.e., don't have the rrx instruction mnemonic in them), we could work around by not using -integrated-as for them. That's pretty fugly, though, and would just be a quick workaround to allow you to keep making progress while the real issues get fixed. > > How much inline asm is there in that file that's causing issues? if it's not too much, it might not be too bad to get at least that much of the asm parsing workin...
2015 Apr 29
1
The easiest way to restore timestamps of files?
...not understand why does not work this switch form: --chmod=D=775,F=664 (it causes error message: rsync: Invalid argument passed to --chmod (D=775,F=664) rsync error: syntax or usage error (code 1) at main.c(1554) [client=3.1.0] ). But it isn't too big problem, as form: --chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r works well. It seems as compatibility with chmod syntax isn't perfect and rsync man page not clearly mentioned this. Thanks again, Franta Hanzlik
2006 Feb 14
2
CMS-like routing
I''d like to set up routes like /<section>/<article>. Using a route like map.connect '':section/:article'' works just fine, but I''ve also got an admin area that is accessed through the route ''admin''. Inside the admin area I''ve got subpages like admin/sections and admin/articles. This is conflicting with the other routes
2011 Jun 07
2
[PATCH] examples/nginx.conf: add ipv6only comment
...:ipv6only support shortly (probably tomorrow). >From 32b340b88915ec945ebdbfa11b7da242860a6f44 Mon Sep 17 00:00:00 2001 From: Eric Wong <normalperson at yhbt.net> Date: Mon, 6 Jun 2011 19:15:36 -0700 Subject: [PATCH] examples/nginx.conf: add ipv6only comment IPv4-mapped-IPv6 addresses are fugly. --- examples/nginx.conf | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/examples/nginx.conf b/examples/nginx.conf index 9f245c8..368e19e 100644 --- a/examples/nginx.conf +++ b/examples/nginx.conf @@ -87,6 +87,14 @@ http { # listen 80 default deferred; # for...
2011 Jun 22
0
[LLVMdev] ARM thumb-2 instruction used for non-thumb2 CPUs
On Jun 23, 2011, at 12:01 AM, Jim Grosbach wrote: > > On Jun 22, 2011, at 2:08 PM, Renato Golin wrote: > >> On 22 June 2011 19:18, Anton Korobeynikov <anton at korobeynikov.info> wrote: >>> Unfortunately, you have to live with this. Until recently binutils >>> were quite buggy wrt thumb2 code, so, most probably you will need new >>> binutils in
2015 Apr 26
2
The easiest way to restore timestamps of files?
Please, is possible (with rsync) re-create files timestamps? I mean something like choosing a "-T" in the program mirror- from it's man page e.g. there: http://sunsite.univie.ac.at/textbooks/mirror/mirror.html#Flags "Do not do any file transfers just force the time-stamps of any local files to be reset to be the same as the remote files. Normally only used when initialising a
2006 Oct 06
1
Backing up individual user home dirs using user privs.
Hey All, After RTM, web page and searching the archives, I felt it worth a shot at mailing the list with my query. I am looking at using rsync and various third party GUI's (rsyncX, nasbackup) to backup our departmental desktops to our nice new multi-terabyte fileserver. When we run rsync in daemon mode, it of course runs as nobody:nogroup and I am aware of being able to set that to any
2006 Jan 04
11
Query Mixin by Duane Johnson
Hello At the start of October, Duane Johnson announced the Query mixin plugin on this list. The code was attached to the announcement email. Unfortunately, I''ve not been able to locate the attached code. Goggle has not helped me this time. Could somebody forward it to me? Thanks in advance Harvey This e-mail has been scanned for all viruses by MessageLabs.
2011 Jul 28
1
refactoring do-mounts out of kinit
So, today, I'm using kinit from our initramfs to handle early boot up sequence. Our init is actually a shell script that does a some setup stuff (plugging values into appropriate proc files mostly), and the script currently passes on to kinit by finishing with "exec /kinit "$@"". I have a situation now though, where due to some ubuntu weirdness, I seem to need to do
2000 Dec 24
2
scp -f / interactive ?
Hi, % scp -v user at host:file.txt . [..] debug: Remote protocol version 1.99, remote software version OpenSSH_2.3.0p1 debug: Local version string SSH-1.5-OpenSSH_2.1.1 [..] debug: Sending command: scp -v -f file.txt debug: Entering interactive session. Sending file modes: C0644 3093316 file.txt Since it 'interactives' the remote user needs a shell. Any workaround? But more interesting
2007 Sep 02
1
How can i send my sip channel 3 to mailbox 2? Please Help!
Hi folks, i'm trying to configure my extensions.conf as small as posible and for that reason i'm using macros. The problem is that maybe I have a misunderstood the concept for the directive "mailbox" in sip.conf. Under my knowledge configuring the mailbox directive to the mailbox I want would be enought to leave an retreive messages in that voicemail box. Of course it seems to
2007 Mar 12
10
using mocha with rspec
Hi folks. I''ve just started using rspec and I have to say it''s very nice. The thing is, I prefer mocha''s mocking dialect. So I thought a simple require ''mocha'' would set me up. Unfortunately, rspec does all its goodness using do/end blocks in anonymous classes, so it wasn''t quite that obvious. Anyway, here is the incantation I ended up
2015 May 30
3
Using two agents
On 30/05/15 08.34, Nico Kadel-Garcia wrote: > On Sat, May 30, 2015 at 8:00 AM, Kasper Dupont > <kasperd at kdxdx.23.may.2015.kasperd.net> wrote: > > As far as I can tell when the ssh command uses an agent to > > authenticate to a server and then forwards an agent to that > > server, it will always use the same agent for both purposes. > > > > Has there
2010 Feb 28
3
puzzling md error ?
this has never happened to me before, and I'm somewhat at a loss. got a email from the cron thing... /etc/cron.weekly/99-raid-check: WARNING: mismatch_cnt is not 0 on /dev/md10 WARNING: mismatch_cnt is not 0 on /dev/md11 ok, md10 and md11 are each raid1's made from 2 x 72GB scsi drives, on a dell 2850 or something dual single-core 3ghz server. these two md's are in