Fatdog64-520 RC

A home for all kinds of Puppy related projects
Message
Author
kirk
Posts: 1553
Joined: Fri 11 Nov 2005, 19:04
Location: florida

#41 Post by kirk »

Hardinfo-0.5.2pre doesn't return results for all the benchmarks.
Yes, some of those test seem to be broke. But the old Hardinfo only tested one CPU core, so for most 64bit CPUs, all of the benchmark tests were broke.

I've uploaded RC2:

http://www.murga-linux.com/puppy/viewto ... 811#555811

User avatar
patelbhavesh
Posts: 15
Joined: Mon 22 Aug 2011, 22:53
Location: Sunnyvale, CA, USA
Contact:

#42 Post by patelbhavesh »

tried the 64-bit version.

Liked
=====================
1>Speed is much faster
2>can use more then 4 gb ram
3>integration with sven especially OSD volume controls etc
4>wifi etc just works OOB
5>standby/sleep mode just works by closing the flap of the laptop and comes up flawlessly , even with wireless etc.


disliked
======================
1>Vi does not work
2>it does not shutdown most of the times.
3>some of my important 32-bit applications dont work.i think i have to download the sfs of 32-bit libraries.

Once again thanks for the hard work and effort put by the development team to help in this.

timothyli
Posts: 65
Joined: Sun 22 Jun 2008, 07:44
Location: Toronto, Canada

#43 Post by timothyli »

RC2 works flawlessly on my Dell Inspiron 15R laptop (i5-2410 8G RAM HD3000 Graphics). Thanks!

jamesbond
Posts: 3433
Joined: Mon 26 Feb 2007, 05:02
Location: The Blue Marble

#44 Post by jamesbond »

Hans,

The default ./configure for most apps in Fatdog is

Code: Select all

 --prefix /usr --libdir /usr/lib64 --sysconfdir /etc
The lxpanel pixmap error has been there for sometime too, it's annoying but so far it's not breaking anything (at least not critical enough). But do let us posted with your progress.

Patel,
What do you mean by
vi does not work
I can edit stuff with it.

cheers!
Fatdog64 forum links: [url=http://murga-linux.com/puppy/viewtopic.php?t=117546]Latest version[/url] | [url=https://cutt.ly/ke8sn5H]Contributed packages[/url] | [url=https://cutt.ly/se8scrb]ISO builder[/url]

User avatar
patelbhavesh
Posts: 15
Joined: Mon 22 Aug 2011, 22:53
Location: Sunnyvale, CA, USA
Contact:

#45 Post by patelbhavesh »

jamesbond wrote: Patel,
What do you mean by
vi does not work
I can edit stuff with it.

cheers!
In the default urxvt console when i type vi i get command not found.see below

Code: Select all

#vi
bash: vi : command not found
Also one more problem is ping doesn't work even though internet works thru mozilla firefox(that is how im posting this post) etc.

Code: Select all

#ping www.gnu.org
ping: bad address 'www.gnu.org'
what i noticed is that even though internet etc works any command line utilities like wget dont work it is not able to resolve dns via command line versus windowed applications like firefox etc work fine.
P.S. i have not made any customizations or anything , just downloaded the iso and installed it via frugal mode.

kirk
Posts: 1553
Joined: Fri 11 Nov 2005, 19:04
Location: florida

#46 Post by kirk »

In the default urxvt console when i type vi i get command not found.see below
VI is in the devx file (actually VIM). The ISO does include mp, which most find easier to use.
Also one more problem is ping doesn't work even though internet works thru mozilla firefox
Works for me,

Code: Select all

# ping www.google.com
PING www.google.com (74.125.113.147): 56 data bytes
64 bytes from 74.125.113.147: seq=0 ttl=51 time=187.162 ms
64 bytes from 74.125.113.147: seq=1 ttl=51 time=125.420 ms
64 bytes from 74.125.113.147: seq=2 ttl=51 time=115.115 ms
I'm using a blackberry modem at the moment. I'll try again at home with a wifi connection.

Hans
Posts: 45
Joined: Thu 16 Mar 2006, 22:38
Location: The Netherlands

lxpanel and howto chroot to 32 bits puppy

#47 Post by Hans »

Jamesbond,
thanks for the prefix, I will use it from now on. So if the pixmap-errors are not that worrysome then the patch I posted would be a good alternative.
I patched it again with another diff, no pixmap errors but this morning it crashed on me. Didn't look at the errors, I was to busy at the time. I will take some more time to test it properly. I will let you know.

patelbhavesh,

I don't know how other fatdog users get to their 32 bit apps but this is what I do:

HOWTO chroot to 32 bit puppy on separate partition.
Install lucidpuppy or whatever puppy in a separate partition and clean it out to make it small, or don't if you have the space. I didn't, lucid takes about 780 mb.
If your using Lucid, then in the menu, select SETUP, and then choice applications that you do not require. In this example I use opera on the 32 bits puppy in sda8 to use the citrix receiver, works great!

In terminal:
mkdir /mnt/lucid526

edit /etc/fstab by adding the lines:
/dev/sda8 /mnt/lucid526 ext3 defaults 0 0
proc-chroot /mnt/lucid526/proc proc defaults 0 0

My script 'chroot-up' to start opera on the 32 bits chroot.

Code: Select all

#!/bin/sh
mount /mnt/lucid526
sleep 1
cp /etc/resolv.conf /mnt/lucid526/etc/resolv.conf
chroot /mnt/lucid526 /usr/bin/opera
My still very crude script 'chroot-down' to unmount the chroot:

Code: Select all

#!/bin/sh
#can not umount /mnt/lucid526, dbus-launch is active, umount like this:
A=`fuser -m /dev/sda8`
kill "${A##* }"
sleep 0.2
B=`fuser -m /dev/sda8`
kill "${B##* }"
sleep 0.2
C=`fuser -m /dev/sda8`
kill "${C##* }"
sleep 0.2
D=`fuser -m /dev/sda8`
kill "${D##* }"
sleep 0.2
E=`fuser -m /dev/sda8`
kill "${E##* }"
sleep 0.2
F=`fuser -m /dev/sda8`
kill "${F##* }"
sleep 0.7
umount /mnt/lucid526
Important is to kill the open processes starting with the highest process number as I discovered, X will crash. I am still learning bash, on the go so to speak, so if a bash-guru out there knows a nice loop construction, let me know, it would save me some time.
As you see mine is limited to 6 processes.

And if you are worried about security then maybe a 'su spot' in front of the 'chroot' command will work.

gcmartin

#48 Post by gcmartin »

Is this a FATDOG problem or something in Hardinfo?
Attachments
Hardinfo missing fields.png
Missing RAM and Motherboard infomation
(127.09 KiB) Downloaded 1069 times

kirk
Posts: 1553
Joined: Fri 11 Nov 2005, 19:04
Location: florida

#49 Post by kirk »

It displays the amount of ram below. I think it doesn't know model/manufacture.

jamesbond
Posts: 3433
Joined: Mon 26 Feb 2007, 05:02
Location: The Blue Marble

#50 Post by jamesbond »

Fatdog64 forum links: [url=http://murga-linux.com/puppy/viewtopic.php?t=117546]Latest version[/url] | [url=https://cutt.ly/ke8sn5H]Contributed packages[/url] | [url=https://cutt.ly/se8scrb]ISO builder[/url]

Hans
Posts: 45
Joined: Thu 16 Mar 2006, 22:38
Location: The Netherlands

lxpanel-patch

#51 Post by Hans »

Progress so far:

Patched with diff from:
http://lxde.svn.sourceforge.net/viewvc/ ... 43&r2=1288

Works very well, I posted this pet in a previous post. Very minor error on pixmap so I patched it again with the complex diff from:
http://sourceforge.net/tracker/index.ph ... tid=894869

Not a go, two lxpanel-crashes in a weeks time and lots of error messages, now on the last diff, the simple one from the sourgeforge url above.
I will test this for a week and get back with the result. Not really important for the patch with the first diff from lxde is allready sufficient.

cheers

Hans
Posts: 45
Joined: Thu 16 Mar 2006, 22:38
Location: The Netherlands

Seamonkey's 'choose helper application' gives error

#52 Post by Hans »

When downloading a file and choosing an application to open the file then seamonkey leaves an error when you click on ctrl alt backspace.

Minor issue, everything seems to work. Just thought I should mention it.

Maybe someone can confirm that it really is something not to worry about.

cheers

User avatar
Q5sys
Posts: 1105
Joined: Thu 11 Dec 2008, 19:49
Contact:

problem with devx?

#53 Post by Q5sys »

So I did a fresh install, rebooted. Made a save file. rebooted. Made sure that the devx was loaded on boot... went to compile the latest Nvidia driver and I got an error.

Looks like there might be an error in the devx. make and gcc all return 'not found' (screenshot shows only gcc)
gcc is located in /usr/lib64
adding that to PATH doesnt solve the problem

Make cannot be found by

Code: Select all

find / -name make
Image

when trying to compile glibc myself... got this config.log

Code: Select all

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by GNU C Library configure (see version.h), which was
generated by GNU Autoconf 2.63.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = q5sys
uname -m = x86_64
uname -r = 3.0.3
uname -s = Linux
uname -v = #1 SMP Thu Aug 18 22:58:50 GMT+5 2011

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /bin
PATH: /usr/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /usr/local/bin
PATH: /usr/X11R7/bin
PATH: /root/my-applications/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2028: checking build system type
configure:2046: result: x86_64-unknown-linux-gnu
configure:2068: checking host system type
configure:2083: result: x86_64-unknown-linux-gnu
configure:2154: checking for gcc
configure:2184: result: no
configure:2247: checking for cc
configure:2294: result: no
configure:2350: checking for cl.exe
configure:2380: result: no
configure:2404: error: in `/root/spot/Downloads/glibc-2.11.1':
configure:2407: error: no acceptable C compiler found in $PATH

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#54 Post by rcrsn51 »

Have you rebooted since you added the devx?

User avatar
Q5sys
Posts: 1105
Joined: Thu 11 Dec 2008, 19:49
Contact:

#55 Post by Q5sys »

rcrsn51 wrote:Have you rebooted since you added the devx?
Q5sys wrote:So I did a fresh install, rebooted. Made a save file. rebooted. Made sure that the devx was loaded on boot... went to compile the latest Nvidia driver and I got an error.
ive rebooted 4 times so far. it loads during boot. and it shows as loaded in the bootmanager.
however ive also noted that changes to PATH are not persistant after shutdown and reboot.
If the Devx is ok... perhaps something wonky going on with the savefile maybe?

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#56 Post by rcrsn51 »

I just checked this myself and it worked fine. Maybe your devx file is corrupt?

User avatar
Q5sys
Posts: 1105
Joined: Thu 11 Dec 2008, 19:49
Contact:

#57 Post by Q5sys »

rcrsn51 wrote:I just checked this myself and it worked fine. Maybe your devx file is corrupt?
ill hash check it in a few... but noticed something else. my changes to PATH are not persistant... and it doesnt have anything to do with the savefile. I just did PATH and added /usr/lib64. Closed RXVT then restarted it and the changes are not there. Check the time on the bottom bar.

Image Image

EDIT:
Yea Hash check on devx failed. Was fine when I downloaded it on my other system and verified it. perhaps got corrupted when I transferred it over by disc.
Redownloading now.

Any ideas on the PATH issue?

jamesbond
Posts: 3433
Joined: Mon 26 Feb 2007, 05:02
Location: The Blue Marble

#58 Post by jamesbond »

ill hash check it in a few... but noticed something else. my changes to PATH are not persistant... and it doesnt have anything to do with the savefile. I just did PATH and added /usr/lib64. Closed RXVT then restarted it and the changes are not there. Check the time on the bottom bar.
Variables are never saved across sessions. If you want to persist them, put them in /.bash_rc (assuming you use bash).
Fatdog64 forum links: [url=http://murga-linux.com/puppy/viewtopic.php?t=117546]Latest version[/url] | [url=https://cutt.ly/ke8sn5H]Contributed packages[/url] | [url=https://cutt.ly/se8scrb]ISO builder[/url]

User avatar
patelbhavesh
Posts: 15
Joined: Mon 22 Aug 2011, 22:53
Location: Sunnyvale, CA, USA
Contact:

#59 Post by patelbhavesh »

timothyli wrote:RC2 works flawlessly on my Dell Inspiron 15R laptop (i5-2410 8G RAM HD3000 Graphics). Thanks!
tim,
im trying to see if there is some issue with the reboot of fatdog .
so when i try to reboot it just hangs saying restarting but i waited for for 15-30 mins and it still does not reboot.
after testing out various scenarios i have come to the conclusion that when the laptop goes into automatic sleep mode(like when you close the laptop lid) and then bring it back on(by opening the lid) and then shutdown , the shutdown hangs.is anyone having the same problem.

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#60 Post by rcrsn51 »

@patelbhavesh : Get a smaller picture of yourself.

Post Reply