Displaying 20 results from an estimated 3000 matches similar to: "How to create a huge file system - 3-4TB?"
2006 Nov 26
1
ext3 4TB fs limit on amd64 (FAQ?)
Hi,
I've a question about the max. ext3 FS size. The ext3 FAQ explains that
the limit is 4TB.
http://batleth.sapienti-sat.org/projects/FAQs/ext3-faq.html
| Ext3 can support files up to 1TB. With a 2.4 kernel the filesystem size
is | limited by the maximal block device size, which is 2TB. In 2.6 the
maximum | (32-bit CPU) limit is of block devices is 16TB, but ext3
supports only up | to 4TB.
2006 Jan 07
2
VB on Linux with Wine
We have 50 complex applications written in Microsoft Visual Basic 6.0
providing banking solutions. We are seriously thinking of porting
our applications to Linux under WINE. Is it possible to do so?
Nature of our VB applications:
------------------------------
1. Extensively used all controls provided in VB
2. Total size of our applications is around 2 million lines
3. Applications are having
1998 Jul 15
3
smbprinting --> HP
HI all,
Question:
I have a freeBSD box using smbprint to print on a HP jet direct printer
attatched to a NT server.
However the formatting is horrible and it only prints out about the first 2
lines of a file. Any suggesstions out there?
thanks!
-aaz
2010 Mar 26
6
Rake argument error
Hi,
I''m having a problem loading a sample data with simple rake command.
rake db:fixtures:load
When I run the above command,I get the following error
$rake db:fixtures:load
(in /home/raghu/www/photos)
rake aborted!
a YAML error occurred parsing
/home/raghu/www/photos/test/fixtures/photos.yml. Please note that YAML
must be consistently indented using spaces. Tabs are not allowed. Please
2006 Jul 26
3
newbie: Scaffold doesn''t pickup DB changes
I''m following along with the depot example in ''Agile Web Development'' and ran into a problem with Scaffold. I changed the MySQL table structure to add a few columns directly and also tried the migrate script to change the database after I got the initial scaffolding to work. However, I can''t seem to get the new columns to show up and am stumped as to how I can
2007 Mar 16
2
Changing from NTFS to ext3
I want to convert all my NTFS partitions to ext3 since I'm no longer
running Windows, at least on my main machine at home. I'm planning to
tar the NTFS partitions to an existing ext3, reformat the partition as
ext3 and untar it back.
What is the best way to accomplish step two of this - reformatting the
partition? I've only done this so far during the installation phase,
and that
2007 Jul 13
3
THANK YOU: Updating R version
Based on the feedback received, I did the following:
a) moved my lib sub-directory from the existing installed R version to
c:\myRLib
b) installed the updated R version
c) created .Renviron file in the home directory (C:\R-2.5.1) with the line
R_LIBS=c:/myRLib
d) used .libPaths() command to confirm that the new R installation was
recognizing the myRLib sub-directory
e) deleted my old R
2004 Mar 30
2
earliest use of rsync?
Dear Folks,
Is there a documented case of earliest use of rsync over internet? I
presume rsync was used almost as soon as internet was invented as a file
transfer and bandwidth efficient backup solution. If anyone has any
information, please respond.
--
Raghu Kulkarni
2011 Jan 25
0
[LLVMdev] install and add backend to llvm.
Have you added the $LLVM_INSTALL_DIR/bin to your PATH environment variable?
Regarding changing a particular backend, check the documentation in
http://llvm.org/docs/WritingAnLLVMBackend.html
http://llvm.org/docs/CodeGenerator.html
A few LLVMdev meetings have good talks to give you a good enough idea.
http://llvm.org/devmtg/
Cheers,
Raghu.
----- Original Message -----
From: "Teklu
2008 Feb 04
3
Large RAID volume issues
I have just finished creating an array on our new enclosure and our CentOS 5
server has recognized it. It shows as the full 6tb in the LSI configuration
utility as well as when I ran fdisk:
[root at HOST sbin]# fdisk /dev/sdb
Note: sector size is 2048 (not 512)
The number of cylinders for this disk is set to 182292.
There is nothing wrong with that, but this is larger than 1024,
and could in
2011 Jan 25
2
[LLVMdev] install and add backend to llvm.
Hi I am new to llvm and Linux (I am using ubuntu 10)
My aim is to add backend to llvm.
I install llvm using
$ sudo apt-get install llvm
and I am able to understand what I read about Writing an LLVM Compiler Backend.
I have seen the assembly codes of the targets on llvm using llc. What I need now is to change some of the TableGen files of one of the target like SparcInstrInfo.td. So I
2010 Sep 17
3
[LLVMdev] Query on llvm-gcc v/s llc/as
Hi all,
I have started using LLVM recently, and I have a basic question. There are two different ways in which an executable can be generated from a .c file - by just using llvm-gcc, and using a combination of llvm-gcc (to emit bitcode .bc), llc (to emit assembly code), as (to assemble the code) and collect2 (linker). For example, consider compiling test.c :
1) llvm-gcc -O3 test.c -o
2008 May 30
5
Upper limit to number of jobs queued by BDRb?
I use BDRb to process RSS feeds for users on my site (http://feedflix.com).
I have a batch job that queries the DB for records that haven''t been updated
in the last so many hours and kicks off a background job for each of them.
If N records are returned by the DB, N background jobs gets queued and get
done serially. As long as N is 255 or under, everything works like a charm.
2010 Jul 12
6
in continuation with the earlier R puzzle
When I just run a for loop it works. But if I am going to run a for loop
every time for large vectors I might as well use C or any other language.
The reason R is powerful is becasue it can handle large vectors without each
element being manipulated? Please let me know where I am wrong.
for(i in 1:length(news1o)){
+ if(news1o[i]>s2o[i])
+ s[i]<-1
+ else
+ s[i]<--1
+ }
--
2011 Jan 20
2
[LLVMdev] Modifying the patterns/ instruction selection phase in LLVM 2.7
On 1/20/11 12:27 PM, Venkatraman Govindaraju wrote:
Just out of curiosity, have either of you considered writing an LLVM
transform that simply replaces these call instructions with inline
assembly code that does what you want? If that works, it seems much
simpler than modifying/enhancing the code generator.
-- John T.
> I have similar requirements for my project. This is what I do.
>
2011 Jan 19
2
[LLVMdev] Modifying the patterns/ instruction selection phase in LLVM 2.7
Hello all,
I am trying to modify the Sparc backend to do something for my team's project, to do the following.
Whenever the backend encounters a call to one particular type of function names (functions like p0(), p1()..etc), I want the backend to generate a "sethi %g0, <number>", and NOT a "call p0, call p1..." instruction. However, the backend should work as usual
2008 May 17
1
Can someone help with this error?
Hello all,
I get this intermittent error saying OpenURI::HTTPError. At the bottom of
the email is what is reported in my backgroundrb_server_<port>.log file. The
process_netflix_reviews method is parsing (in the background) Netflix''s RSS
feeds. This error also pretty much brings down the BDRb process and to
recover, I am forced to do a
./script/backgroundrb stop
2010 Nov 22
0
[LLVMdev] Sparc back end fix
Hi Tim,
Thanks for the patch. I had a few questions though - just to make sure that I get the problem correctly. Currently, here is your flow, as I understand it :
x86 llvm-gcc binary llc -march=sparc gcc cross/sparc
source ---------------------> .bc ------------------> .s -----------------> sparc executable.
Is this correct? Or did you manage to build the
2009 Jan 10
3
Poor RAID performance new Xeon server?
I have just purchased an HP ProLiant HP ML110 G5 server and install ed
CentOS 5.2 x86_64 on it.
It has the following spec:
Intel(R) Xeon(R) CPU 3065 @ 2.33GHz
4GB ECC memory
4 x 250GB SATA hard disks running at 1.5GB/s
Onboard RAID controller is enabled but at the moment I have used mdadm
to configure the array.
RAID bus controller: Intel Corporation 82801 SATA RAID Controller
For a simple
2005 May 06
3
Tru64 unix version...
Hello,
I want to use samba on Tru64 Unix. Can anybody let me know the location from where i can download this version.
Raghu