Displaying 20 results from an estimated 4000 matches similar to: "Inode/Blocksize questions"
2002 Apr 29
2
Block Groups and Large Filesystems
Hello,
I'm creating a large ext3 filesystem on an LVM volume, on top of a RAID1
for storing Norton Ghost disk images. Most of the files created will be
between 1 and 10 GB; there may also be occasional small files also.
I'm already going to reduce the number of inodes on the filesystem.
Probably limit it to 102400 or so.
`mke2fs --help` reports a "-g blocks_per_group" option,
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
2013 Feb 21
5
BTRFS fails defragging
Hi folks,
I''m using Ubuntu 12.10 Quantal with
# uname -r
3.5.0-24-generic
And it seems I cannot defrag :
# filefrag /boot/initrd.img-3.5.0-24-generic
/boot/initrd.img-3.5.0-24-generic: 3 extents found
# btrfs filesystem defrag /boot/initrd.img-3.5.0-24-generic
# echo $?
20
# filefrag /boot/initrd.img-3.5.0-24-generic
/boot/initrd.img-3.5.0-24-generic: 3 extents found
Any clue
2002 May 07
3
inodes 100% full, how do I know?
How can you know beforehand, without running fsck, that all inodes are used
of a particular ext3 filesystem? Default systemtools use output from df,
which shows only a 50% usage of the filesystem, and pretend nothing is
wrong, while you really cant't move or copy a file to it. So I only found
out when running fsck.
This is my output from fsck (RH7.2, stock kernel, stock? ext3):
root# fsck
2006 Nov 09
1
Ext3 - which blocksize for small files?
Hi,
I want to use an ext3 Partition (~1TB) for Mail Storage, this means tons of
small files.
Has anyone recommendations about blocksize, inodes, etc. for mkfs.ext3 ?
Thanks in advance,
David
--
View this message in context: http://www.nabble.com/Ext3----which-blocksize-for-small-files--tf2601442.html#a7257363
Sent from the Ext3 - User mailing list archive at Nabble.com.
2007 Aug 02
1
kernel: EXT3-fs: Unsupported filesystem blocksize 8192 on md0.
Hi,
I made an ext3 filesystem with 8kB block size:
# mkfs.ext3 -T largefile -v -b 8192 /dev/md0
Warning: blocksize 8192 not usable on most systems.
mke2fs 1.38 (30-Jun-2005)
Filesystem label=
OS type: Linux
Block size=8192 (log=3)
Fragment size=8192 (log=3)
148480 inodes, 18940704 blocks
947035 blocks (5.00%) reserved for the super user
First data block=0
290 block groups
65528 blocks per group,
2020 Feb 13
1
[common PATCH v4 0/1] options: add '--blocksize' option for C-based tools
From: Nikolay Ivanets <stenavin@gmail.com>
v4 fixes issues found during code review:
- whitespace-change-only hunks are removed
- options are alphabetically orderred now
v3 is just a spelling correction spotted by Eric Blake
https://www.redhat.com/archives/libguestfs/2020-February/msg00111.html
In v2 I've moved '--blocksize' parameter description into the separate
file called
2020 Feb 24
3
[PATCH commit] options: Compile blocksize code conditionally.
Since the blocksize option was added since the minimum version of
libguestfs for virt-v2v, we need to make it conditional so that
virt-v2v can still be compiled with the older libguestfs.
This commit does the minimum fix to make it build. It doesn't
conditionalize the --blocksize option altogether. However I believe,
at least for virt-v2v, that is OK since the --blocksize option is not
used
Re: [PATCH nbdkit v2 02/11] blocksize: Implement filtering of .can_multi_conn (forcing it to false).
2019 Jan 05
1
Re: [PATCH nbdkit v2 02/11] blocksize: Implement filtering of .can_multi_conn (forcing it to false).
On 1/5/19 8:50 AM, Richard W.M. Jones wrote:
> I examined each filter to see which ones implement a cache and do not
> properly consider consistency across clients for flush requests. For
> these filters we should force .can_multi_conn to return false.
>
> I believe only one filter (blocksize) needs to be updated and all the
> other ones are safe.
> ---
>
2020 Feb 12
1
[common PATCH v3 0/1] options: add '--blocksize' option for C-based tools
From: Nikolay Ivanets <stenavin@gmail.com>
v3 is just a spelling correction spotted by Eric Blake
In v2 I've moved '--blocksize' parameter description into the separate
file called blocksize-option.pod so we can include it everywhere we need
similar to key-option.pod.
https://www.redhat.com/archives/libguestfs/2020-February/msg00099.html
v1 was here:
2020 Feb 12
3
[common PATCH v2 0/1] options: add '--blocksize' option for C-based tools
From: Nikolay Ivanets <stenavin@gmail.com>
In v2 I've moved '--blocksize' parameter description into the separate
file called blocksize-option.pod so we can include it everywhere we need
similar to key-option.pod.
v1 was here:
https://www.redhat.com/archives/libguestfs/2020-February/msg00096.html
Nikolay Ivanets (1):
options: add '--blocksize' option for C-based
2019 Oct 29
2
[PATCH] fish: add option --blocksize for disks
When --blocksize <val> is provided, qemu command line would add
physical_block_size=<val>,physical_logical_size=<val> to -device
directive.
Example:
qemu-kvm \
-drive file=raw.img,cache=writeback,id=hd0,if=none \
-device scsi-hd,drive=hd0,physical_block_size=4096,logical_block_size=4096 \
Signed-off-by: Tuan Hoang <tmhoang@linux.ibm.com>
---
fish/fish.c |
2020 Feb 19
2
[PATCH 0/1] virt-make-fs: add '--blocksize' option support
From: Nikolay Ivanets <stenavin@gmail.com>
This patch adds 4096 bytes sector size for output disk.
Side notes:
While working on this patch I reveal long standing issue: virt-make-fs can fail
if source directory/archive contains certain amount of really small or empty
files or wide tree of directories. That is because of lack of available inodes
on a small file system to keep files
2020 Feb 12
3
[PATCH v2 0/1] tools: add '--blocksize' option for C-based tools
From: Nikolay Ivanets <stenavin@gmail.com>
This patch depends on changes in 'common' sub-module posted here:
https://www.redhat.com/archives/libguestfs/2020-February/msg00099.html
v2:
Almost the same as v1 except '--blocksize' option description is moved
into a common submodule (similar to key-option.pod).
v1 was here:
2013 Feb 09
3
how to use the stdin module?
Moin,
I compiled icecast under cygwin (yes, I have to use Windows 7 togehter with
cygwin).
The audio stream that I want to distribute come from stdin, like I get it from
curl http://streamingserver.foo.bar/stream/stream.php |
But how to proceed? Should I just pipe this to | icecast -c etc/icecast.xml?
It does not work.
Thanks for any hint!
--
|Michael Renner E-mail: michael.renner at
2019 Nov 05
2
[PATCH v3 RESEND] direct, fish: add blocksize as optional argument for launch command
Allow `launch` call to accept an optional argument, called `blocksize`.
Example:
$ guestfish --listen -a raw.img
$ guestfish --remote -- launch blocksize:4096
The actual qemu command is:
[...]
-device virtio-scsi-ccw,id=scsi
-drive file=raw.img,cache=writeback,id=hd0,if=none
-device scsi-hd,drive=hd0,physical_block_size=4096,logical_block_size=4096
[...]
Signed-off-by: Tuan Hoang
2012 Apr 02
2
[PATCH 0/2] Fix btrfs blocksize and bind mkfs.btrfs (RHBZ#807905).
https://bugzilla.redhat.com/show_bug.cgi?id=807905
Currently if you specify the blocksize parameter to mkfs-opts with a
btrfs filesystem, then it fails, because mkfs.btrfs interprets the -b
option as meaning filesystem size.
The first patch fixes this by disallowing blocksize (it cannot be
mapped meaningfully into btrfs parameters).
The second patch adds the full /sbin/mkfs.btrfs utility to the
2020 Feb 11
2
[PATCH 0/1] tools: add '--blocksize' option for C-based tools
From: Nikolay Ivanets <stenavin@gmail.com>
This patch depends on changes in 'common' sub-module posted here:
https://www.redhat.com/archives/libguestfs/2020-February/msg00096.html
Nikolay Ivanets (1):
tools: add '--blocksize' option for C-based tools
align/scan.c | 8 ++++++++
align/virt-alignment-scan.pod | 12 ++++++++++++
cat/cat.c
2013 Feb 09
6
how to use the stdin module?
Xabier, I mean vlc + Ices2 + Icecast2, I do not know because I do not
work with Windows.
Very interesting a proxi with Icecast2, I will study. I have saved a lot
of work, why do not you tell me before ? :))
El s?b, 09-02-2013 a las 23:28 +0100, Xabier Oneca -- xOneca escribi?:
> But you don't need VLC nor Ices2 to build a proxy with Icecast. It can
> connect to a stream and proxy it. I
2013 Feb 09
2
how to use the stdin module?
Perhaps I've done something similar but on Debian and not know if it
will work in Windows.
I've used vlc to receive any audio from the Internet and ices2 as a
source client. It works perfectly fine as a repeater.
El s?b, 09-02-2013 a las 22:23 +0100, Xabier Oneca -- xOneca escribi?:
> Is the stream a MP3 stream? If so, you can use Icecast as a proxy (see
> documentation).
>