search for: fileystem

Displaying 20 results from an estimated 22 matches for "fileystem".

Did you mean: filesystem
2016 Dec 07
3
rsyncing from a compressed tarball.
Mike, As it stands right now, we use xz for our compression, so if rsync had a similar option for xz that would probably be an improvement. However, I think being able to decompress directly to the remote system would save more; elsewise I don't see how I'm going to be able to avoid untarring and uncompressing the whole xz file on the other end. thanks much, ed On Tue, Dec 6, 2016 at
2010 Oct 31
6
Horrible btrfs performance due to fragmentation
On Mon, Oct 11, 2010 at 6:46 PM, Calvin Walton <calvin.walton@gmail.com> wrote: > On Mon, 2010-10-11 at 03:30 +0300, Felipe Contreras wrote: >> I use btrfs on most of my volumes on my laptop, and I''ve always felt >> booting was very slow, but definitely sure is slow, is starting up >> Google Chrome: >> >> encrypted ext4: ~20s >> btrfs: ~2:11s
2014 Jan 19
3
USB boot problems on Gigabyte GA-M55Plus-S3G
In message <73645861681468542 at scdbackup.webframe.org>, "Thomas Schmitt" <scdbackup at gmx.net> wrote: >me: >> > Check whether it fails with Clonezilla. >Ronald F. Guilmette: >> Please be specific. For Clonezilla, there are many different versions > >Any failure on the same stick which also succeeds is enough >to kill the theory of bad
2007 Sep 24
1
XEN....a very big problem :D
Hi! My problem with xen isn''t finished. The terrible situation is next: Under Slack12 work only XEN 3.0.2 version. This one boot....xen 3.1, 3.0.3 and 3.0.4 don''t boot....ever and ever the same error (I try to recompile 3.1 some times....I used others versions prebuilded and however don''t work...): VFS: Cannot open root device "hda5" or unknown-block(0,0)
2014 Jan 19
0
USB boot problems on Gigabyte GA-M55Plus-S3G
...its SYSLINUX files into that filesystem. This should boot Clonezilla's system via the SYSLINUX installation provided by Ady's test image and the boot configuration provided by Clonezilla. My own question to Ady was, whether it would be worthwhile to erase his SYSLINUX files from the FAT32 fileystem too, and to make a normal install of Clonezilla into the empty FAT32 filesystem. If Ady's proposal seems too complicated, then just try mine. If it works, then we are done here. If not ... well ... Have a nice day :) Thomas
2018 May 01
0
[PATCH v6 2/7] daemon: Changing the way that we detect if a device contains partitions.
...let mds = Md.list_md_devices () in let ret = ret @ List.filter_map check_with_vfs_type mds in (* LVM. *) @@ -85,6 +70,23 @@ let rec list_filesystems () = List.flatten ret +(* Look to see if device can directly contain filesystem (RHBZ#590167). + * Partitioned devices cannot contain fileystem, so we will exclude such devices. + *) +and is_not_partitioned_device device = + assert (String.is_prefix device "/dev/"); + let device = String.sub device 5 (String.length device - 5) in + let dir = "/sys/block/" ^ device in + + try + (* Open the device's directory u...
2007 Sep 30
4
Question about increasing node slots
We have a test 10gR2 RAC cluster using ocfs2 filesystems for the Clusterware files and the Database files. We need to increase the node slots to accomodate new RAC nodes. Is it true that we will need to umount these filesystems for the upgrade (i.e. Database and Clusterware also)? We are planning to use the following command format to perform the node slot increase: # tunefs.ocfs2 ?N 3
2009 Oct 08
0
rsync+zfs rotate script
...MD="/usr/local/bin/rsync -axS --delete-delay --stats" # first argument is the remote server to connect (ie. server1) # second argument is the remote target (ie. /home/) note trailing slashes just like in rsync # third argument is which pool to use (ie. tank) # fourth argument is what ZFS fileystem on that pool (ie server1/home) # fifth argument is how many snapshots for this zfs filesystem RMT_SERVER=$1 RMT_TARGET=$2 LCL_POOL=$3 LCL_ZFS=$4 SNAPCOUNT=$5 OUTFILE=/tmp/rsync_zfs_rotate-${LCL_POOL}-${LCL_ZFS}.log ERRFILE=/tmp/rsync_zfs_rotate-${LCL_POOL}-${LCL_ZFS}.err MAILER=/usr/sbin/sendmail...
2004 Mar 12
1
Sharing a SAN
Hi All, We are in the early stages of an Oracle E-Business Suite implementation running RHEL and are looking at different storage options. For production we are looking at a 4-Node RAC/10-Node Application tier and a 2-Node RAC/2-Node App tier for test. We would like to use OCFS for both RACs and shared APPL_TOPs (an E-Business features that lets you share a single copy of application code
2017 Jan 31
1
unexplained 'access denied' for windows workstations
...70, with users/groups on the filesystem level. Therefore samba shares look like this: [share] path = /srv/academic read only = no writable = yes create mask = 0770 directory mask = 0770 Now certain users complain that they cannot access certain folders, but looking at the folders from the linux fileystem, their ownership is identical. (let's say username:"domain users") If on the fileserver I su to a problem user ('su username') and I check group membership ('id') everything looks as expected, plus I CAN access the folders. So it seems it's samba that denies a...
2010 Jul 23
2
rsync to iSCSI over WAN
I am running rsync in cygwin on windows. I am attempting to backup a somewhat large data store (750GB) to a remote site. As its windows and preserving permissions exactly is important, I have an iSCSI drive mounted on the local system across a somewhat slow WAN link (IE, it would take about 3 months to copy the datastore over it). Unfortunately, since this appears as a "local" copy to
2006 Apr 11
3
ext3 filesystem corruption
Hi - We have had 3 rather major occurances of ext3 filesystem corruption lately, i.e. so bad we couldn't event mount, and fsck didn't help. I am looking for pointers, that could help us investigate the root cause. In general... We are running RedHat WS 3 Update 6, 2.4.21-40.2.ELsmp or 2.4.21-37.ELsmp We have a small SAN system that looks like this
2010 Jan 24
4
zfs streams
Can I send a zfs send stream (ZFS pool version 22 ; ZFS filesystem version 4) to a zfs receive stream on Solaris 10 (ZFS pool version 15 ; ZFS filesystem version 4)? -- Dick Hoogendijk -- PGP/GnuPG key: 01D2433D + http://nagual.nl/ | SunOS 10u7 5/09 | OpenSolaris 2010.03 b131 + All that''s really worth doing is what we do for others (Lewis Carrol)
2018 May 01
9
[PATCH v6 0/7] daemon: list_filesystems: filter out block devices which cannot hold filesystem
This patch series: 1. Addresses comments from v5 series review 2. Large commit is splitted to more granular commits for better code review. Mykola Ivanets (6): daemon: Changing the way that we detect if a device contains partitions. daemon: list-filesystems: Ignore partitioned MD devices. tests: list-filesystems command ignores partitioned MD devices. daemon: list-filesystems: Change
2007 Jun 19
5
OpenSuse 10.2 & Xen 3.1 initrd file missing
Hi, I recently put together an OpenSuse 10.2 machine (Tyan motherboard with Opteron dual-core) and downloaded the Xen 3.1 rpm''s. After loading them and modifying grub to boot into the Xen kernel, I get a "file not found" error on the xen initrd file. As it turns out, there is a link for the xen initrd file in /boot/grub but the file doesn''t exist. Not sure what
2013 Oct 28
7
Encryption solution for messages at rest
Hi, We have clients with various security & compliance requirements. Although not required, it would be ideal to have messages encrypted at rest. We already use SSL/TLS to secure the transmission of most email. However, it would be nice to have them encrypted sitting on our server. Is anyone doing this? I think that ideally, rather than full-disk encryption, we should use an encryption that
2016 Sep 26
6
Possible formatting bug in ssh-agent.1 man page
Version info: OpenSSH_7.3p1, OpenSSL 1.0.2i 22 Sep 2016, Arch linux The ssh-agent.1 man page seems to have an indentation oddity, at least, as formatted with recent Arch linux manpage toolset. Here's what appears in the formatted output just after the description of the the "-t" option: ---------- Begin formatted output ------------------------------------- -t life
2009 May 01
4
How do I resize a Physical Partition in a Dom U that''s "on" a Logical Volume in the Dom 0?
Hey all, I''m trying to figure out how to re-size physical partitions in the Dom U. I''ve read up what I can find on line and finally decided to have Logical Volumes in the Dom 0 and pass them as physical volumes for use in the Dom U. Here''s an example of what I''m doing. To start in the Dom 0 I created the LV''s with lvcreate -n guest_boot -L 100M
2005 Nov 20
11
NFS question (and Best Practices)
I saw in another post that a best practices doc will be coming, but I figured I would try to get this working. I''m trying to understand why zfs uses so many "zfs create" so I can use it better. What makes sense is that each zfs fs can have it''s own options (compression, nfs, atime, quota, etc). I really love this because it is so tuneable -- compression on these
2007 Jun 21
19
Writing a tool for Shared Persistent Windows Boot Image
Before, in my "Hard Problem" email I was trying to communicate a design issue were trying to solve with Xen. This is what we need to do: 1) Deploy 24 Windows XP VMs in parallel. 2) Boot them from a shared Windows XP C: drive. 3) Since this is a read-only shared image we obviously can''t have multiple VM''s writing to it. 4) All writes to the boot image for logging,