Displaying 3 results from an estimated 3 matches for "tinyapp".
Did you mean:
tinyapps
2007 Jan 09
6
help w/push_event_handler plus doc update request
...is via writing Rails web
apps and I''m just starting to dig in to cooking up some non-trivial
stand alone ruby apps.
-------
#!/usr/bin/env ruby -w
#
require ''rubygems''
require ''wx''
load ''/Users/hjw/tmp/wxStff/mainframe.wrb''
class TinyApp < Wx::App
def on_init
frame = MainFrame.new("painter")
setup_frame(frame)
frame.show()
end
def setup_frame(frame) # setup my application''s stuff here
frame <----.push_event_handler here---->
class << frame
def on_paint...
2016 Oct 02
2
Re: mount: unknown filesystem type 'exfat'
> On Oct 2, 2016, at 02:27, Richard W.M. Jones <rjones@redhat.com> wrote:
>
> guestfish or libguestfs don't support filesystems. It's whatever
> is supported by the kernel.
>
> exFAT is apparently not supported by the Linux kernel, but there is a
> FUSE driver for it called exfat-fuse (as you found out).
>
> So if you add exfat-fuse and maybe
2016 Oct 02
2
mount: unknown filesystem type 'exfat'
Hello,
Can anyone please tell me whether guestfish can mount exFAT partitions?
I created a full disk image of a drive which contained a single exFAT partition.
Was able to mount it with kpartx/FUSE:
# kpartx -a -v disk.img
add map loop0p1 (252:2): 0 39070078 linear 7:0 2
# mount /dev/mapper/loop0p1 /mnt -o ro
FUSE exfat 1.2.3
# ls /mnt
foo bar baz etc
but not guestfish:
$ sudo apt install