| Author |
Message |
DesertPuppy

Joined: 08 Aug 2006 Posts: 34 Location: Mississippi
|
Posted: Tue 16 Oct 2007, 05:38 Post subject:
How-To install Devx or any .SFS FULL HD STEP BY STEP Subject description: This works all the way up to 4.01 |
|
This is for all the puppy people like me who use a full hd install for puppy
And want to have devx 3.01 so they can compile stuff.
This is for puppy 3.01 but should work for other versions.
I have used this pretty much every time I install a new version of puppy.
NOTE: This is how I do it and it works every time for me,
it should work for you also if you take it step by step.
EDIT: I have confirmed this on 4.01 alpha 6
STEP 1.
First make sure you have downloaded the devx_301.sfs
NOTE: I always download it to / - that is the top directory not /root but /
STEP 2.
Next I add a few lines to the end of /etc/rc.d/rc.modules file
| Code: |
#v2.13
#dougal suggested this:
[ ! -d /proc/acpi ] && modprobe apm
###END###
|
What I do is add the lines just before the ###END#### line, so now it
looks like this:
| Code: |
#v2.13
#dougal suggested this:
[ ! -d /proc/acpi ] && modprobe apm
#needed to be able to mount squashfs on full hd install
modprobe squashfs
# end of update
###END###
|
save the file and reboot
NOTE: what this does is to
load squashfs support ever time you boot puppy.
STEP 3:
(There is a screen shot at end of post)
Make a new dir in / I always call mine /data, it's just what I do:
so now in the / directory you should see you
devx_301.sfs and the directory data
open up a terminal window from the / directory and type the following:
(again a screen shot at end of post)
| Code: |
#mount -o loop devx_301.sfs /data
|
what just happened is puppy used the data directory
to mount the .sfs file so that now you can access all the files in the sfs file.
STEP 4:
now type:
| Code: | | cp -a -v --remove-destination /data/* / >devcopy.txt |
NOTE: there is a space between --remove-destination and /data
Also there is a space between /data/* and /
And a space between / and >devcopy.txt
it will seem like puppy has paused for a few seconds
(depends on speed of computer) just wait , when you see the # sign
again you are good to go.
NOTE: The devcopy.txt file will show you everything
that got copied over and where it went to.
STEP 5:
now type:
| Code: |
#umount /data
#sync
|
that will unmount the sfs file and if you
check /data will now be empty again.
STEP 6:
This next step may or may not be needed but I do it just to be sure:
type:
STEP 7:
to test to make sure it all worked type:
and you should get a response like:
| Code: |
gcc: no input files
|
if you do then you are all set and you
can start using puppy to compile stuff.
Like I said I use this on my system all the time and it works great!
If you change anything like the directory name
it should still work but I showed you how
I did it and I know it works like this.
I hope This was clear and easy to follow
and will save you time and frustration
when using puppy from a full hd install.
| Description |
|
| Filesize |
64.42 KB |
| Viewed |
7000 Time(s) |

|
| Description |
|
| Filesize |
60.09 KB |
| Viewed |
6900 Time(s) |

|
Last edited by DesertPuppy on Mon 01 Sep 2008, 23:41; edited 2 times in total
|
|
Back to top
|
|
 |
Firefox
Joined: 03 Nov 2006 Posts: 171 Location: UK
|
Posted: Tue 16 Oct 2007, 13:03 Post subject:
|
|
Thankyou Desertpuppy.
This is just the thing people are looking for a simple way to get the devx file loaded -- I`ve spent hours trying to get the thing to work and given up in disgust the bootmanager is useless in this regard,
Very grateful and thanks again.
|
|
Back to top
|
|
 |
Mini
Joined: 28 Jan 2007 Posts: 3 Location: Parma, Ohio USA
|
Posted: Sun 28 Oct 2007, 13:11 Post subject:
devx_301.sfs to a full hd installation. Subject description: something went wrong here.. |
|
desertpuppy, I just tried to install devx_301.sfs and I got a failure when I did the code in step 3, I did reboot the computer after I edited /etc/rc.d/rc.modules and also after I created the new directory in the / I will try to include a picture which explain the failure.
When I ran the code in the term I got a failure.
Mini
in Parma, Ohio
| Description |
|

Download |
| Filename |
devx1.jpg |
| Filesize |
114.52 KB |
| Downloaded |
5666 Time(s) |
|
|
Back to top
|
|
 |
Firefox
Joined: 03 Nov 2006 Posts: 171 Location: UK
|
Posted: Sun 28 Oct 2007, 14:09 Post subject:
|
|
Where did you get devx.sfs from in your picture?.
Try #mount -o loop devx_301.sfs /data
AFTER youve changed that name or downloaded the correct sfs file.
|
|
Back to top
|
|
 |
Mini
Joined: 28 Jan 2007 Posts: 3 Location: Parma, Ohio USA
|
Posted: Sun 28 Oct 2007, 15:02 Post subject:
step 4 Subject description: devx install to a full hd installation in puppy 301 |
|
I found the problem in step three , had to many spaces in the rc.modules file .
I tried to move on with the installation and in step 4 or 5 there is another failure. I will show a snapshot of what I keep getting in the term:
| Description |
|

Download |
| Filename |
devx3.jpg |
| Filesize |
106.4 KB |
| Downloaded |
5483 Time(s) |
|
|
Back to top
|
|
 |
Firefox
Joined: 03 Nov 2006 Posts: 171 Location: UK
|
Posted: Sun 28 Oct 2007, 20:08 Post subject:
|
|
I don`t quite understand what your doing.
Your running puppy 301 on a full hd install yes?
In which case you need to download devx_301.sfs
from:-
http://distro.ibiblio.org/pub/linux/distributions/puppylinux/sfs_modules-3
Place it in /
#mount -o loop devx_301.sfs /data
Then type
#cp -a -v --remove-destination /data/* / >devcopy.txt
Then type
#umount /data
#sync
#ldconfig
Test
#gcc
If you get gcc: no input files
Then your ok to compile.
|
|
Back to top
|
|
 |
d3xt3r
Joined: 03 Nov 2007 Posts: 2 Location: Minnesota, USA
|
Posted: Sat 03 Nov 2007, 17:40 Post subject:
|
|
Actually your procedure is a good reference for intoducing other SFS files to the puppy file system in a Full HD install. VERY useful.
|
|
Back to top
|
|
 |
tlcstat
Joined: 28 Oct 2007 Posts: 79
|
Posted: Sun 04 Nov 2007, 11:38 Post subject:
Devx 301 install to full HD puppy Subject description: works just fine |
|
Perfect!
thanks
tlcstat
|
|
Back to top
|
|
 |
gorlewskik
Joined: 12 Nov 2007 Posts: 20 Location: Oregon, USA
|
Posted: Fri 16 Nov 2007, 03:38 Post subject:
Thank you for your SFS tutorial |
|
I like my full install because it is faster loading than the frugal install. Now I can add developer tools to it. And load/remove other sfs files on demand.
Thanks.
|
|
Back to top
|
|
 |
friednoodle
Joined: 19 Nov 2007 Posts: 14
|
Posted: Mon 19 Nov 2007, 05:50 Post subject:
Much appreciated |
|
It worked like a dream for me, first rate how-to.
Many thanks.
|
|
Back to top
|
|
 |
ZAPPDOG

Joined: 16 Feb 2007 Posts: 44 Location: CALGARY CANADA
|
Posted: Tue 20 Nov 2007, 01:29 Post subject:
|
|
A very nice way to install that darn devx. I've fought with that one a few times.
This way worked real nice with no problems. I am saving a copy of those instructions for future reference.
Well done
_________________ PUPPY DINGO FULL INSTALL WITH EZPUP
P4 2.6 G
P4 2.0 G
P4 1.8 G
PUPPY RULES
http://unclezapaudiozap.freeforums.org/index.php
http://sadiesdogplace.webs.com/
http://greenourplanet.webs.com/
|
|
Back to top
|
|
 |
dolphin
Joined: 26 Nov 2007 Posts: 17
|
Posted: Tue 27 Nov 2007, 08:46 Post subject:
|
|
i have follow all of the step by step
i still got problem same as Mini got there
could anybody help ?
|
|
Back to top
|
|
 |
llol_slim
Joined: 20 Nov 2007 Posts: 16
|
Posted: Tue 27 Nov 2007, 08:48 Post subject:
|
|
dolphin .. it may be worth checking the case, as linux is case sensitive..
Data and data are two different names. That was my mistake as I had the error as well
|
|
Back to top
|
|
 |
muggins
Joined: 20 Jan 2006 Posts: 6660 Location: lisbon
|
Posted: Tue 27 Nov 2007, 09:10 Post subject:
|
|
The directory /data is just a temporary location to mount devx_301.sfs. You need to create it with:
mkdir /data
Also, with #mount -o loop devx_301.sfs /data , have you saved devx_301.sfs to /, do you have a directory /data, and if you enter pwd, the response should be /
Last edited by muggins on Tue 27 Nov 2007, 09:21; edited 1 time in total
|
|
Back to top
|
|
 |
dolphin
Joined: 26 Nov 2007 Posts: 17
|
Posted: Tue 27 Nov 2007, 09:14 Post subject:
|
|
i am very alert about case sensitive,
i know what am i doing
|
|
Back to top
|
|
 |
|