similar to: SAMBA with mounted ISO images

Displaying 20 results from an estimated 9000 matches similar to: "SAMBA with mounted ISO images"

2011 Jul 05
0
[PATCH] losetup: use stdout and return 0 for -h
From: Karel Zak <kzak at redhat.com> ported to klibc losetup version from util-linux 108591d2b7860ca0b8d27d114bed1e504a31fa72, also add -h option. -maks Reported-by: Kamalesh Babulal <kamalesh at linux.vnet.ibm.com> Signed-off-by: Karel Zak <kzak at redhat.com> Signed-off-by: maximilian attems <max at stro.at> --- Other patches might be useful too, that one just
2010 Mar 14
0
[patches] klibc review unsorted patch queue
hello hpa, please review this unsorted patch queue, as I wasn't sure about them they didn't land yet in todays pull request. thanks max git clone git://git.debian.org/users/maks/klibc.git test Thomas B?chler (1): klcc: compile shared by default jeremy buisson (1): [klibc] sparc64: fix bad 32 bits socket syscalls maximilian attems (1): [klibc] add losetup utils the
2006 Jul 20
1
RE: Error: Device 769 (vbd) could not be connected...Limit of 25 domains.
This is a known issue. It has been fixed in xen unstable. The problem is loop device is not leased after the guest destroyed. If execute "losetup -d /dev/loopX" in domain0, the problem will be solved temporarily. >-----Original Message----- >From: xen-users-bounces@lists.xensource.com >[mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Thomas Karsten >Sent:
2003 Jun 13
1
jbd count incremented *even* if volume is mounted RO?
Continuing on with my earlier post . . . after looking through code of JBD, is the following perhaps the difference in why the md5 values differ; When a journalled filesystem that uses jbd is mounted the journal b_count is incremented by one? *EVEN* if the volume was mounted read only, this b_count is still increased by one? curious as ever! lt __________________________________ Do you
2001 Nov 06
2
2.2.14 integration with lvs
Hi, I had to modify 2 files to integrate ext3 patch with lvs patch.. (ext3-2.4-0.9.14-2414p8.gz and ipvs 0.8.2) --- drivers/block/loop.c.orig Tue Nov 6 10:13:48 2001 +++ drivers/block/loop.c Tue Nov 6 10:17:55 2001 @@ -218,14 +218,16 @@ static int lo_send(struct loop_device *l index++; pos += size; UnlockPage(page); -
2016 Jan 27
2
error during virt-sparsify
Hello, I'm using *virt-sparsify* for compressing image file [ash2] jenkins@b-imagebuilder-worker-r13h17-prod:~/workspace/imagebuilder/packer/output$ virt-sparsify --compress /data/home/jenkins/workspace/imagebuilder/packer/output/packer-vm.qcow2 /data/home/jenkins/workspace/imagebuilder/packer/output/packer-vm.qcow2.sparsified Input disk virtual size = 41943040000 bytes (39.1G) Create
2011 Jul 12
1
after mounting with -o degraded: ioctl: LOOP_CLR_FD: Device or resource busy
dd if=/dev/null of=img5 bs=1 seek=2G dd if=/dev/null of=img6 bs=1 seek=2G mkfs.btrfs -d raid1 -m raid1 img5 img6 losetup /dev/loop4 img5 losetup /dev/loop5 img6 btrfs device scan mount -t btrfs /dev/loop4 dir umount dir losetup -d /dev/loop5 mount -t btrfs -o degraded /dev/loop4 dir umount dir losetup -d /dev/loop4 ioctl: LOOP_CLR_FD: Device or resource busy mkfs.ext3 /dev/loop4 mke2fs 1.39
2005 Jan 25
1
[[ CD Server ]]
Hi, I'm building "cheap" print servers using old Pentium 133 (150, 200 or 233) with 32 (or 64) MB of RAM memory. Small HDs (2.1, 3.5, 4.2) GB and using Debian Sarge (3.1), with kernel 2.6, CUPS and Samba 3.0.10. The print part is ok, works fine and it is just information to the background. Now our IT team decided to put a CD and make the "cheap" print servers became
2020 Feb 05
2
[fdo] Detect my own session being closed
Hello: I created a backup program that uses an external HD to do the backups, and it is designed to allow several users to share the same hard disk by storing each backup in a different folder. To ensure that the backups are always made, it automatically mounts the backup hard disk when it detects it (using udisk2 DBus interface). The first problem is that if the backup program of the user A
2010 Apr 07
1
[PATCH] v2v: Fix error on exit unmounting transfer ISO
If the transfer iso was mounted during conversion, virt-v2v would always give the following error on shutdown: (in cleanup) umount: /tmp/transferb7icam: umount: /sysroot/tmp/transferb7icam: not found at /home/mbooth/src/virt-v2v/blib/lib/Sys/VirtV2V/GuestOS/RedHat.pm line 1171. This was because the GuestOS::RedHat cleanup was being called implicitly on exit, which is after umount_all
2011 Aug 14
3
cant mount degraded (it worked in kernel 2.6.38.8)
# uname -a Linux dhcppc1 3.0.1-xxxx-std-ipv6-64 #1 SMP Sun Aug 14 17:06:21 CEST 2011 x86_64 x86_64 x86_64 GNU/Linux mkdir test5 cd test5 dd if=/dev/null of=img5 bs=1 seek=2G dd if=/dev/null of=img6 bs=1 seek=2G losetup /dev/loop2 img5 losetup /dev/loop3 img6 mkfs.btrfs -d raid1 -m raid1 /dev/loop2 /dev/loop3 btrfs device scan btrfs filesystem show Label: none uuid:
2011 May 26
5
[PATCH 0/4] ocfs2: bugfix for hard readonly mount
Hi, All, These four patches are all related to ocfs2 on hard readonly mount. patch 1 fix oops when umount ocfs2 on hard readonly device. Because ocfs2_dismount_volume() will call ocfs2_cluster_hangup() and then call ocfs2_stack_driver_put(), will hit BUG_ON(active_stack == NULL). patch 2 fix oops when do ls or cat in ocfs2 on hard readonly device. Because ocfs2_open_lock() will call
2010 Nov 20
1
[PATCH 1/2] cat cleanup ugly ifdefery
no point in carrying those ifdefs along, just cleanup the code that seems either BSD specific or can't work on klibc. Signed-off-by: maximilian attems <max at stro.at> --- usr/utils/cat.c | 22 +--------------------- 1 files changed, 1 insertions(+), 21 deletions(-) diff --git a/usr/utils/cat.c b/usr/utils/cat.c index 1108d2e..7465148 100644 --- a/usr/utils/cat.c +++
2020 Feb 06
2
[fdo] Detect my own session being closed
The problem is that I don't want to have a system service, because I would also need a communication protocol, an arbitration algorithm... I think that there should be an API in logind that would allow a program to block the logout the same than it allows to block shutdown and reboot, and being notified of that. In fact, sometimes I receive a notification in Gnome Shell telling me that
2005 Aug 27
1
Samba clients can't see partitions mounted via loop device from image files
Is there something special about filesystems mounted via the loop device, which prevents Samba from sharing them? I have a small LAN with several PCs on it. It has a few Windows machines, and a Linux machine running Mandrake 10 (kernel 2.6.3), which shares out its root ("/") read-only as "c". (Temporarily, for testing, it is shared with full write permissions, which I know
2014 Jan 23
2
Advice/directions to users of Syslinux
Hi, Ady: > > > I would suggest not using the work "disk". me: > > I am unhappy with "disk" too. > > But that change would have a much wider scope in the text. Ady: > You can still use a different wording in a linked section. If "disk" > is not the best choice for the new section, then choose a better > term. Two problems: There are
2007 Mar 26
1
Backing Up A Xen Guest
Here's the problem. We perform full tar backups of our CentOS 4/5 machines in real-time at regular intervals. And when a disaster happens, we are able to restore those backups onto virgin filesystems, make the /dev/null, /dev/zero and /dev/console devices .. and boot the machine. This has worked well on standalone systems, and also on Xen 3.0.3 guests on CentOS 4.4 machines, where each guest
2014 Dec 11
2
CentOS 5- mount shows a cifs share mounted 4 times!
Hello Gordon, Thursday, December 11, 2014, 5:23:56 PM, you wrote: GM> The system will mount a GM> filesytem on top of an existing path, including one with another GM> filesystem at the same path. But the mounts are identical- \\\\10.0.0.253\\niamh on /NSA320-music type cifs (rw) \\\\10.0.0.253\\niamh on /NSA320-music type cifs (rw) \\\\10.0.0.253\\niamh on /NSA320-music type cifs
2008 Mar 24
1
Multiple ISO's
Hi, I have a number of games which have multiple install CD's which I have in ISO format (Need for Speed: Underground 2, Sim City: Deluxe and a few others). When I attempt to install the game I use the following command to Mount the game CD: mount '/home/user/gamefolder/gameimage.iso' /mnt/iso1/ -t iso9660 -o ro,loop=/dev/loop0 This mounts the Game Image to /mnt/iso and from there I
2020 Aug 03
2
NFSroot over wifi in CentOS 7 - graceful shutdown problem
Hi, I've got a task to have a small number of laptops netboot Linux over WiFi. The kernel is loaded off the USB stick of cource, it's off topic for now. The WPA-supplicant daemon is started early by dracut off initrd. It works. Mostly. The problem is that upon shutdown systemd terminates all the processes FIRST and unmounts filesystems NEXT. Guess what? Upon termination,