The time now is Thu 21 Feb 2019, 12:15
All times are UTC - 4 |
Author |
Message |
BarryK
Puppy Master

Joined: 09 May 2005 Posts: 8829 Location: Perth, Western Australia
|
Posted: Thu 21 Jun 2007, 09:38 Post subject:
|
|
Okay, I've modified the new Rox 2.6.1 PET package to recognise these filetypes and launch 'filemnt'.
I also made some small mods to 'filemnt', attached.
Vdisktool is interesting, it does more stuff, like the virtual disk. Definitely room for that in Puppy too. I'll check it out more closely soon.
Description |
|

Download |
Filename |
filemnt.gz |
Filesize |
1.15 KB |
Downloaded |
457 Time(s) |
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 5087 Location: Arizona, U.S.A.
|
Posted: Thu 21 Jun 2007, 19:02 Post subject:
|
|
Beem; If the sfs file is mounted & unioned for the Puppy that your running,
then there could be some nasty effects, if the sfs was copied to ram no prob.
GuestToo; Thanks, I got your tutorial about the mime files & the changes in
the files & folders from Puppy-1. Just what's needed for utility installs.
willhunt; I need to look at your app. & see what a virtual disk is.
If your app. does the same stuff as filemnt, we should integrate them.
Barry; I'll look at your mods., I'm not at my work PC at the moment.
|
Back to top
|
|
 |
BarryK
Puppy Master

Joined: 09 May 2005 Posts: 8829 Location: Perth, Western Australia
|
Posted: Thu 21 Jun 2007, 19:57 Post subject:
|
|
Oh yeah, when I setup rox pet pkg, I selected mime-type names:
application/x-ext2-image:*.2fs
application/x-ext3-image:*.3fs
application/x-squashfs-image:*.sfs
which seemed consistent (sort of) with the pre-existing 'application/x-cd-image:*.iso)
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 5087 Location: Arizona, U.S.A.
|
Posted: Fri 22 Jun 2007, 01:25 Post subject:
|
|
Barry; Looks like you got the code section I jumped over to work, I got tired of
beating my head on the keyboard trying to figure out why it didn't work.
I've used the same code repetedly but for some reason it just wouldn't work.
In the file you provided the initrd.gz code is commented out.
Archive uses the .gz extention, so this is a nonMIME situation with no handler.
Instead of the "already mounted" message, ROX should just popup the path.
I don't think using an already mounted & unioned file should cause a problem.
For no button on the "Unmount" info Xmessage, make the first line this:
Xdialog --title " Notice..." --no-button \
Puppy-1 didn't have a problem closing ROX, but ROX in Puppy-2 has changed.
The pet mime types will probably supersede filemnt in importance & priority.
This may kill using this utility for Puppy, Barry must decide it's fate...
======================================================
I'm not sure what willhunt's virtual drives are, I'm guessing just image files.
A GUI for making image files of types: ext2, ext3, sfs, & iso is another good idea.
|
Back to top
|
|
 |
Béèm

Joined: 21 Nov 2006 Posts: 11775 Location: Brussels IBM Thinkpad R40, 256MB, 20GB, WiFi ipw2100. Frugal Lin'N'Win
|
Posted: Fri 22 Jun 2007, 04:36 Post subject:
|
|
sunburnt wrote: | Beem; If the sfs file is mounted & unioned for the Puppy that your running,
then there could be some nasty effects, if the sfs was copied to ram no prob.
| At first sight, no nasty effects.
_________________ Time savers:
Find packages in a snap and install using Puppy Package Manager (Menu).
Consult Wikka
Use peppyy's puppysearch
|
Back to top
|
|
 |
BarryK
Puppy Master

Joined: 09 May 2005 Posts: 8829 Location: Perth, Western Australia
|
Posted: Fri 22 Jun 2007, 08:00 Post subject:
|
|
Quote: | Puppy-1 didn't have a problem closing ROX, but ROX in Puppy-2 has changed. |
Puppy-2 has no problem either. Pmount uses 'rox -D <path>', no problem.
It's working nicely for me. Grab the 2.17alpha mid-week and test it.
Yes, the initrd.gz, I wasn't sure about that one. It's something only developers would want to open.
|
Back to top
|
|
 |
Béèm

Joined: 21 Nov 2006 Posts: 11775 Location: Brussels IBM Thinkpad R40, 256MB, 20GB, WiFi ipw2100. Frugal Lin'N'Win
|
Posted: Fri 22 Jun 2007, 18:11 Post subject:
|
|
I have downloaded and installed this filemnt.gz now.
I don't see how it interacts with ROX, so I copied the filemnt bin on the desktop and dropped a sfs on it. (blabla.sfs)
I then look in /mnt and find indeed a new directory of which the contents is indeed the one od blabla.sfs, but I find the name of the directory odd with all the + signs in there. What is the signification?
Description |
|
Filesize |
82.02 KB |
Viewed |
793 Time(s) |

|
Description |
|
Filesize |
25.68 KB |
Viewed |
797 Time(s) |

|
_________________ Time savers:
Find packages in a snap and install using Puppy Package Manager (Menu).
Consult Wikka
Use peppyy's puppysearch
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 5087 Location: Arizona, U.S.A.
|
Posted: Fri 22 Jun 2007, 20:21 Post subject:
|
|
Beem; Linux doesn't allow "/" in file or dir. names, so to make unique dirs.
to use as mount points for the image files, I convert the paths "/" to "+".
I chose the "+" character instead of "-" & "_" because they're commonly
used to name dirs. & files, so the names unique & can be reconverted back.
So to look at the /mnt dir. you see: +Path+ImageFile as the mount dir.
|
Back to top
|
|
 |
willhunt

Joined: 05 Oct 2005 Posts: 495
|
Posted: Sat 23 Jun 2007, 04:01 Post subject:
|
|
just a thought but if you changed line 11 from
Code: | MntPt='/mnt/'`echo "$imgFile" |sed "s#^\.##g" |sed "s#/#+#g"` | to Code: | MntPt=/mnt/${imgFile##/*/} |
then would it make the mount point /mnt/NameOfFile ?
_________________ 176 Icewm Themes
vlc-0.8.6c-i586.pet
vlc-0.8.6c-i586.pet
|
Back to top
|
|
 |
Béèm

Joined: 21 Nov 2006 Posts: 11775 Location: Brussels IBM Thinkpad R40, 256MB, 20GB, WiFi ipw2100. Frugal Lin'N'Win
|
Posted: Sat 23 Jun 2007, 04:26 Post subject:
|
|
sunburnt, I understand now the reason why you did as you do.
I was gonna make a suggestion, but willhunt did beat me by 20 minutes with the extra advantage he proposed a code.
I wouldn't know how to suggest it with a code.
But I still have the idea to do the mount in a more intuitive way by going to the file in ROX and doing a right click select mount as action.
And the action would probably be your filemnt program.
_________________ Time savers:
Find packages in a snap and install using Puppy Package Manager (Menu).
Consult Wikka
Use peppyy's puppysearch
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 5087 Location: Arizona, U.S.A.
|
Posted: Sat 23 Jun 2007, 15:45 Post subject:
|
|
Beem; See my post in the Suggestions forum about ROX.
willhunt; Using just the file name wouldn't allow mounting 2 pup_save.2fs files.
Say you wanted to copy files from one Save or work image file to another.
Using the path with the file name assures that there's no dup. mount points.
If the new mount point is the same as the old one, then the new file will be
mounted over the top of the older one & the old one can't be accessed.
This is an interesting result of mounting files over files, quite useful at times
as it causes the mounted image files to act like a stack... Last on, first off.
|
Back to top
|
|
 |
Béèm

Joined: 21 Nov 2006 Posts: 11775 Location: Brussels IBM Thinkpad R40, 256MB, 20GB, WiFi ipw2100. Frugal Lin'N'Win
|
Posted: Sat 23 Jun 2007, 19:25 Post subject:
|
|
willhunt wrote: | just a thought but if you changed line 11 from
Code: | MntPt='/mnt/'`echo "$imgFile" |sed "s#^\.##g" |sed "s#/#+#g"` | to Code: | MntPt=/mnt/${imgFile##/*/} |
then would it make the mount point /mnt/NameOfFile ? | Yes indeed.
I changed that code and now I have /mnt/NameOfFile
_________________ Time savers:
Find packages in a snap and install using Puppy Package Manager (Menu).
Consult Wikka
Use peppyy's puppysearch
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 5087 Location: Arizona, U.S.A.
|
Posted: Sat 23 Jun 2007, 20:09 Post subject:
|
|
It'll be fine until you have 2 image files with the same name...
I'm not sure just what the problem is with: /mnt/+Path+FileName
And I'm not sure why /mnt/FileName is an improvement, because it's not.
|
Back to top
|
|
 |
willhunt

Joined: 05 Oct 2005 Posts: 495
|
Posted: Sat 23 Jun 2007, 23:18 Post subject:
|
|
sunburnt I understand why you did it that way I did not mean to suggest it was better just different
if you addthison line 68
[code]if [ -f $MntPt ] ;then gxmessage "That mount point exisits please rename one of your files" ;exit 3 ;fi[code]
it should solve any problem that might arise
right?
_________________ 176 Icewm Themes
vlc-0.8.6c-i586.pet
vlc-0.8.6c-i586.pet
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 5087 Location: Arizona, U.S.A.
|
Posted: Sun 24 Jun 2007, 00:40 Post subject:
|
|
Yes, my suggestion was going to be to check for a preexisting mount point.
However, mount points are dirs. & not files ( if [ -d $MntPt ];then ).
This just stops duplicate image files from being mounted, not the best arrangement.
I'm just puzzled as to why you want to change code that does a better job.
My code will mount any number of image files, anywhere, with no conflicts.
I don't understand exactly what it is that your attempting to accomplish.
|
Back to top
|
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|