search for: shmfs

Displaying 20 results from an estimated 24 matches for "shmfs".

2014 Mar 03
3
Re: method for communication between containers
..."/tmp1"/> </filesystem> 4) write two programs: program1 writes a string to the shared memory program2 reads the string from the shared memory and compile both programs in the host machine. both of the two programs use ftok() and shmget() to obtain the shmfs id. 5) a. if we run both program1 and program2 in the host machine, the program2 can read the string that program1 has written. b. if we run both program1 and program2 in the container, both programs also work well. c. if we run program1 in the host and run program2 in the container, program2 f...
2014 Feb 27
2
method for communication between containers
Dear all, In my system, two containers need to exchange data as quick as possible and the two containers are hosted by the same physical machine, I wonder if socket is the only method for communication between containers? Thank you. Cheng Wang
2005 Jan 02
12
[XEN] using shmfs for swapspace
...have 256mb of ram and you''ve probably by now added up that the above comes to 320mbytes. so i started looking at ways to minimise the memory usage. first, reducing each machine to only having 32mb of ram, and secondly, on the host, creating a MASSIVE swap file (1gbyte), making a MASSIVE shmfs/tmpfs partition (1gbyte) and then creating swap files in the tmpfs partition!!! the reasoning behind doing this is quite straightforward: by placing the swapfiles in a tmpfs, presumably then when one of the guest OSes requires some memory, then RAM on the host OS will be used until such time as th...
2002 Jan 05
1
root fs not mounting ext3
...-:/ # cat /proc/mounts /dev/root / ext2 rw 0 0 proc /proc proc rw 0 0 devpts /dev/pts devpts rw 0 0 /dev/hda9 /opt ext3 rw 0 0 /dev/hda8 /usr ext3 rw 0 0 /dev/hda7 /home ext3 rw 0 0 /dev/hda3 /hda3 msdos rw 0 0 /dev/hda5 /boot ext3 rw 0 0 /dev/hda2 /hda2 msdos rw 0 0 /dev/hda11 /hda11 ext3 rw 0 0 shmfs /dev/shm shm rw 0 0 usbdevfs /proc/bus/usb usbdevfs rw 0 0 -:/ # cat /etc/mtab /dev/hda6 / auto rw 0 0 proc /proc proc rw 0 0 devpts /dev/pts devpts rw,mode=0620,gid=5 0 0 /dev/hda9 /opt ext3 rw 0 0 /dev/hda8 /usr ext3 rw 0 0 /dev/hda7 /home ext3 rw 0 0 /dev/hda3 /hda3 msdos rw 0 0 /dev/hda5 /boot...
2004 Jan 06
1
[PATCH] possible bug in bindresvport
...", 14rpc failed: 4 ) = 14 close(3) = 0 exit(1) = ? mango:~ # mango:~ # mount -o tcp 192.168.1.2:/nfsroot/mango /mnt mango:~ # cat /proc/mounts rootfs / rootfs rw 0 0 /dev/hda11 / ext2 rw,noatime 0 0 sysfs /sys sysfs rw 0 0 shmfs /dev/shm tmpfs rw 0 0 proc /proc proc rw 0 0 devpts /dev/pts devpts rw 0 0 shmfs /dev/shm tmpfs rw 0 0 usbdevfs /proc/bus/usb usbdevfs rw 0 0 192.168.1.2:/nfsroot/mango /mnt nfs rw,v3,rsize=32768,wsize=32768,hard,tcp,lock,addr=192.168.1.2 0 0 -- USB is for mice, FireWire is for men! sUse lINUX...
2005 Dec 15
2
Strange delay in syscall close() on a large ext3-filesystem
...accpet in webmail.log, "broken pipe"). The system has the following partitions: slox:/var/spool/imap/alarm-virus # mount /dev/sda6 on / type ext3 (rw) proc on /proc type proc (rw) devpts on /dev/pts type devpts (rw,mode=0620,gid=5) /dev/sdb1 on /var type ext3 (rw,noatime,data=writeback) shmfs on /dev/shm type shm (rw) slox:/var/spool/imap/alarm-virus # df Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda6 30811104 16479040 12766936 57% / /dev/sdb1 282774360 122292576 146117668 46% /var shmfs 1940876 0 19408...
2001 Nov 01
3
ext3 partition still gets mounted as ext2 for me too!
...up messages confirm that these modules are being loaded. Even after doing all that, my root filesystem still gets mounted as ext2. Here is the output of /proc/mounts /dev/root / ext2 rw 0 0 proc /proc proc rw 0 0 devpts /dev/pts devpts rw 0 0 /dev/hda1 /boot ext3 rw 0 0 /dev/hdb1 /data ext3 rw 0 0 shmfs /dev/shm shm rw 0 0 usbdevfs /proc/bus/usb usbdevfs rw 0 0 cuda:/lmaster/home /master nfs rw,v3,rsize=8192,wsize=8192,soft,udp,lock,addr=cuda 0 0 mako:/ldist /ldist nfs rw,v3,rsize=32768,wsize=32768,soft,udp,lock,addr=mako 0 0mako:/software /software nfs rw,v3,rsize=32768,wsize=32768,soft,udp,lock,...
2014 Feb 27
0
Re: method for communication between containers
...r communication between containers? If you have an area of filesystem that is shared + writable to both containers, they could create UNIX sockets in that filesystem, rather than TCP sockets. Also they could create named FIFO pipes. Another option would be to create a shared memory backed file in shmfs or hugepagefs and expose it to both containers. Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/...
2014 Mar 03
0
Re: method for communication between containers
...t; </filesystem> > 4) write two programs: program1 writes a string to the shared memory > program2 reads the string from the shared memory > and compile both programs in the host machine. > both of the two programs use ftok() and shmget() to obtain the shmfs id. > 5) a. if we run both program1 and program2 in the host machine, the program2 can read the string that program1 has written. > b. if we run both program1 and program2 in the container, both programs also work well. > c. if we run program1 in the host and run program2 in the contai...
2000 Apr 10
1
Kernel Bug in file.c 69 (experimental kernel)
-----BEGIN PGP SIGNED MESSAGE----- Hello samba team, hi there when I try to copy, move to the Samba server it generates a nice kernel bug. I'm currently running samba-2.0.7-pre3 but samba-2.0.6 also has this problem. Reading files off the vfat share works fine. Also writing small ascii and binary files works, but if the binary file is about 3 Mb or larger. I'm currently running
2014 Apr 09
1
Re: method for communication between containers
...t; </filesystem> > 4) write two programs: program1 writes a string to the shared memory > program2 reads the string from the shared memory > and compile both programs in the host machine. > both of the two programs use ftok() and shmget() to obtain the shmfs id. > 5) a. if we run both program1 and program2 in the host machine, the program2 can read the string that program1 has written. > b. if we run both program1 and program2 in the container, both programs also work well. > c. if we run program1 in the host and run program2 in the contai...
2001 Nov 03
1
getting ext3 on suse-7.3? (long post)
...in fstab and rebooted, to the mount error listed above -- such that they're mounted ext2. the output of mount is: /dev/hda2 on / type ext3 (rw) proc on /proc type proc (rw) devpts on /dev/pts type devpts (rw,mode=0620,gid=5) /dev/hda3 on /usr type ext2 (rw) /dev/hda4 on /home type ext2 (rw) shmfs on /dev/shm type shm (rw) usbdevfs on /proc/bus/usb type usbdevfs (rw) it occurred to me that there might be wisdom in replacing the journal files on the two partitions that will not mount ext3, but as root they are undeletable and cannot, apparently, be rebuilt by the tune2fs -j command, which...
2006 Feb 20
1
DO NOT REPLY [Bug 3527] New: rsync: tries to chdir() into a device
...us: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: philipp.marek@bmlv.gv.at QAContact: rsync-qa@samba.org With the following test-script I get an error of ENOTDIR; see below for strace. It runs on an shmfs, and that may be some cause for that bug, because previously it ran on a normal ext3 partition and I didn't see this message. The script makes some files, devices, symlinks and directories; then changes the type of nearly all entries and tries to combine them. #!/bin/bash mkdir type...
2017 Jul 26
0
[PATCH 2/3] ACPI/DRM: rework ACPI_VIDEO Kconfig dependencies
...0644 --- a/drivers/gpu/drm/i915/Kconfig +++ b/drivers/gpu/drm/i915/Kconfig @@ -2,6 +2,7 @@ config DRM_I915 tristate "Intel 8xx/9xx/G3x/G4x/HD Graphics" depends on DRM depends on X86 && PCI + depends on ACPI_VIDEO || !ACPI select INTEL_GTT select INTERVAL_TREE # we need shmfs for the swappable backing store, and in particular @@ -12,12 +13,6 @@ config DRM_I915 select DRM_PANEL select DRM_MIPI_DSI select RELAY - # i915 depends on ACPI_VIDEO when ACPI is enabled - # but for select to work, need to select ACPI_VIDEO's dependencies, ick - select BACKLIGHT_LCD_SUPP...
2003 Nov 13
2
Disappointing Performance Using 9i RAC with OCFS on Linux
...erformance was due to the lack of an OS IO cache but I wasn't sure. The database is running with a small buffer cache currently so there is a lot of scope to increase its size, each node in the cluster has 7Gb RAM with no other application competing for it, although we will have to configure a shmfs to go to a very large SGA. I will post the results of my tuning efforts. Kevin -----Original Message----- From: Wim Coekaerts [mailto:wim.coekaerts@oracle.com] Sent: 12 November 2003 17:40 To: Kevin Miller Cc: ocfs-devel@oss.oracle.com; ocfs-users@oss.oracle.com Subject: Re: [Ocfs-users] Disapp...
2003 Nov 13
2
Disappointing Performance Using 9i RAC with OCFS on Linux
...erformance was due to the lack of an OS IO cache but I wasn't sure. The database is running with a small buffer cache currently so there is a lot of scope to increase its size, each node in the cluster has 7Gb RAM with no other application competing for it, although we will have to configure a shmfs to go to a very large SGA. I will post the results of my tuning efforts. Kevin -----Original Message----- From: Wim Coekaerts [mailto:wim.coekaerts@oracle.com] Sent: 12 November 2003 17:40 To: Kevin Miller Cc: ocfs-devel@oss.oracle.com; ocfs-users@oss.oracle.com Subject: Re: [Ocfs-users] Disapp...
2002 Nov 22
0
Samba 2.2.6 Write Problem
...og text, but I do not know what could be important. The mounts were t that time :: ufa@chlorine:~> mount /dev/hda2 on / type reiserfs (rw) proc on /proc type proc (rw) devpts on /dev/pts type devpts (rw) /dev/user/data_vol on /home type reiserfs (rw) /dev/var/var_vol on /var type reiserfs (rw) shmfs on /dev/shm type shm (rw) usbdevfs on /proc/bus/usb type usbdevfs (rw) //chlorine/homes on /mnt/pdc type smbfs (0) ufa@chlorine:~> The command was chlorine:/etc/samba # cp smb.conf /mnt/pdc (executed with uid 0) The original file: -rw-r--r-- 1 root root 11659 Nov 22 09:18 smb.con...
2018 Sep 19
2
virt-customize is very slow in ubuntu 18.04/centos 7.5
.../run + mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run + mkdir -p /run/lock + ln -s ../run/lock /var/lock + test -e /etc/mtab + ln -s /proc/mounts /etc/mtab + mount -t devtmpfs /dev /dev + mkdir -p /dev/pts + mount -t devpts /dev/pts /dev/pts + mkdir -p /dev/shm + mount -t tmpfs -o mode=1777 shmfs /dev/shm + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/sdb selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color == *selinux=1* ]] + mk...
2020 Sep 03
3
Error while loading shared libraries: libsbz.so
Hi, I have a KVM host running ubuntu 18.04 with libguestfs-tools version 1.36.13-1ubuntu3.3 installed from the Ubuntu's repo and when I try to use virt-cat for example on a VM it fails with: libguestfs: error: appliance closed the connection unexpectedly. > libguestfs: error: guestfs_launch failed. After doing "export LIBGUESTFS_DEBUG=1 LIBGUESTFS_TRACE=1" and running the
2020 Sep 03
0
Re: Error while loading shared libraries: libsbz.so
...=0755 tmpfs /run > + mkdir -p /run/lock > + ln -s ../run/lock /var/lock > + test -e /etc/mtab > + ln -s /proc/mounts /etc/mtab > + mount -t devtmpfs /dev /dev > + mkdir -p /dev/pts > + mount -t devpts /dev/pts /dev/pts > + mkdir -p /dev/shm > + mount -t tmpfs -o mode=1777 shmfs /dev/shm > + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/sdb selinux=0 guestfs_verbose=1 TERM=xterm-256color == *selinux=1* ]] > + mkdir -p /...