search for: stegman

Displaying 11 results from an estimated 11 matches for "stegman".

Did you mean: stegmann
2002 Apr 29
2
Block Groups and Large Filesystems
...e man page has no documentation on this. When I try to use it, any value I've specified returns "mke2fs: blocks per group count out of range" Can I use this option to make larger block groups, which should reduce fragmentation of my files? Should I care about this? -- -Matt Stegman
2005 Sep 23
2
17G File size limit?
Hi everyone, This is a strange problem I have been having. I'm not sure where the problem is, so I figured I'd start here. I as having problems with Bacula stopping on 17Gig Volume sizes, so I decided to try to Just dd a 50 gig file. Sure enough, once the file hit 17 gigs dd stopped and spit out an error (pandora bacula)# dd if=/dev/zero of=bigfile bs=1M count=50000 File size
2001 Aug 03
1
About Names
...t to be able to use ext3 and ext2 in the same kernel, but why not make it a mount option, since the journal code is separate in the kernel anyway? Maybe it's not important, but it seems like a bad idea to imply that ext3 is different from ext2 like ext2 is different from extfs. -- -Matt Stegman
2010 Aug 01
3
The {{key}} interpolation syntax in I18n messages is deprecated...
All, Has anyone seen this - I am getting the following deprecation warning when running my functional tests under rails 2.3.8 (just moved an app from 2.3.4 up to 2.3.8 in prep to move to Rails 3 --- if you think this problem is solved in Rails 3 then let me know): The {{key}} interpolation syntax in I18n messages is deprecated. Please use %{key} instead. I have isolated the problem to the
2002 Apr 29
1
Inode/Blocksize questions
Hi! I'm going to build a maildir-based mailserver with a ~56 gb mail-partition. What blocksize/bytes-per-inode/number of inodes should i use (i don't want to ran out of inodes and don't want to sacrifice too much space for filefragments)? Is there a drawback when lowering the blocksize/increasing the number of inodes (except the maximum filesystem size)? The inodes used by a file is
2011 May 13
2
Rails 3 Forces HTML Escape of Forms
I have a legacy application I ported from Rails 2.x. I found that the escaping was occurring where it shouldn''t, like in creation of forms, and I couldn''t turn it off. I found two mechanisms that should have disabled it, a function safe_html, which is supposed to mark a string as not needing to be escaped. The other is raw, which similarly indicates that a string should be output
2002 Oct 03
3
Converting root ext3 to ext2?
Can anyone comment on whether or not it is possible to successfully disable the journal of an ext3 root file system prior to reboot? My application is to try and make sure there is no journal prior to installing and rebooting into a system which does not support ext3. I know that as long as the root is cleanly remounted r/o with no journal updates pending, this will be compatible. I'm
2010 Feb 08
2
ECONNABORTED: An established connection was aborted
What, exactly, does ECONNABORTED: An established connection was aborted by the software in your host machine. mean? So ... let''s start with the most basic of questions: What''s a connection? When one has a connection, does there have to be communication back-and-forth periodically before the connection is terminated? If so ... where is the timeout set? Is the browser
2005 Apr 07
1
public or shared folders
Hello I would like to setup a public namespace with folders under it that are accessiable by certain users. Something like this: Projects---- | |-----03060 | |-----04579 Users should be able to move emails from their inbox to the shared folders, and all user can see the moved email. Here is what I have done so far: 1. I
2010 Sep 22
1
Bundler picking up wrong version of Ruby with Rails 3 ( possible bundler bug )
Hello All, I am developing a JRuby on Rails 3 application. Standard stuff. I am facing problems getting autotest to run. Here''s the trace: % autotest loading autotest/rails_rspec2 bundle exec /Users/manish/Foo/Foo-Server/jruby-1.5.2/lib/ruby/gems/1.8/gems/rspec-core-2.0.0.beta.22/bin/rspec
2010 Jul 27
0
Using an ActiveRecord model in routes.rb
Is it potentially dangerous to use an ActiveRecord model in routes.rb? Here''s a line from our routes.rb file: > map.resources :registrations, :requirements => { :id => User::USERNAME_REGEXP } Registration#to_param returns the User''s username. User::USERNAME_REGEXP is just a regex that matches one or more valid username characters. This route works as expected, but my