slacko-6.0 beta 2

A home for all kinds of Puppy related projects
Message
Author
User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#21 Post by James C »

01micko wrote:James

From CD, does it boot fast? That is.. is it reading the CD for the Puppy_slacko-5.9.1.sfs or the hard drive? CD=slow, HD=fast boot. Maybe the hard drive drivers aren't getting loaded in initrd. Is it a new hard drive or motherboard? (thinking along the lines of hard drive controller).

BTW, logs seem ok.
Just copied the main sfs and zdrive to the partition (instead of a folder), rebooted cd and successfully booted.Seemed a bit slow.

Same old mobo and hard drive ...did add a second hdd but using sda only for Puppy.

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#22 Post by James C »

01micko wrote:
me wrote:From CD, does it boot fast?
Just to add to this. Hide any save files made from slacko and make sure puppy_slacko-5.9.1.sfs is on the root of a partition. Boot of optical drive with no pfix= params. Does it load the main sfs of the CD/DVD or the HDD? Again, I should be able to tell from the logs so if you don't mind post them from that scenario please.
Moved the main sfs and z drive to different partition(Mint partition actually), hid savefiles and.booted cd with no parameters.

Looks like it picked up the puppy_slacko_5.9.1.sfs from sda2 and not the cd.
Attachments
logs-puppypc21020.tar.bz2
(1.79 KiB) Downloaded 430 times

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

#23 Post by 01micko »

Ok, we can determine that the driver for the hdd is loaded too late. That driver should be built into vmlinuz (and in tahr is probably missing from init.gz). Output of lsmod and lspci -nn will be handy now to figure out what module to make a builtin. Thanks.
Puppy Linux Blog - contact me for access

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#24 Post by James C »

As an experiment, did a frugal install directly to the root of sdb3, quick fix of menu.lst and it boots no problem.

If i follow my normal procedure of putting all files in a folder ....immediate kernel panic.Root of the partition...... no problem.
Attachments
logs-puppypc15212.tar.bz2
(1.5 KiB) Downloaded 417 times
Screenshot.jpg
(25.42 KiB) Downloaded 884 times

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#25 Post by James C »

01micko wrote:Ok, we can determine that the driver for the hdd is loaded too late. That driver should be built into vmlinuz (and in tahr is probably missing from init.gz). Output of lsmod and lspci -nn will be handy now to figure out what module to make a builtin. Thanks.

Code: Select all

# lsmod
Module                  Size  Used by
iptable_mangle           897  0 
iptable_nat             2596  0 
nf_nat                  9469  1 iptable_nat
xt_conntrack            2338  4 
ipt_REJECT              1502  1 
nf_conntrack_ftp        3994  0 
nf_conntrack_irc        2316  0 
iptable_filter           769  1 
xt_state                 796  0 
nf_conntrack_ipv4       7221  7 nf_nat,iptable_nat
nf_defrag_ipv4           800  1 nf_conntrack_ipv4
nf_conntrack           38525  7 nf_nat,xt_state,xt_conntrack,nf_conntrack_ftp,nf_conntrack_irc,iptable_nat,nf_conntrack_ipv4
ip_tables               6897  3 iptable_filter,iptable_mangle,iptable_nat
mperf                    804  0 
snd_hda_codec_realtek    41728  1 
serio_raw               2986  0 
pcspkr                  1248  0 
k8temp                  2352  0 
nouveau               592450  2 
mxm_wmi                 1032  1 nouveau
video                   9539  1 nouveau
ttm                    36701  1 nouveau
drm_kms_helper         23699  1 nouveau
drm                   138938  4 ttm,drm_kms_helper,nouveau
i2c_algo_bit            3732  1 nouveau
shpchp                 18062  0 
snd_hda_intel          17282  0 
forcedeth              42067  0 
snd_hda_codec          57223  2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep               3804  1 snd_hda_codec
snd_pcm_oss            26252  0 
snd_mixer_oss           9788  1 snd_pcm_oss
snd_pcm                47741  3 snd_pcm_oss,snd_hda_codec,snd_hda_intel
snd_page_alloc          4802  2 snd_pcm,snd_hda_intel
snd_seq_dummy            912  0 
snd_seq_oss            19048  0 
snd_seq_midi            3117  0 
snd_seq_midi_event      3633  2 snd_seq_oss,snd_seq_midi
snd_rawmidi            11986  1 snd_seq_midi
snd_seq                32202  6 snd_seq_midi_event,snd_seq_oss,snd_seq_dummy,snd_seq_midi
snd_timer              11650  2 snd_pcm,snd_seq
snd_seq_device          3589  5 snd_seq,snd_rawmidi,snd_seq_oss,snd_seq_dummy,snd_seq_midi
snd                    34220  12 snd_hda_codec_realtek,snd_pcm_oss,snd_hwdep,snd_timer,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_oss,snd_seq_device,snd_mixer_oss
soundcore               3347  1 snd
i2c_nforce2             4009  0 
i2c_core               12539  5 drm,drm_kms_helper,i2c_algo_bit,nouveau,i2c_nforce2
wmi                     5812  2 mxm_wmi,nouveau
thermal                 6132  0 
evdev                   6295  0 
button                  3391  1 nouveau
processor              22393  0 
thermal_sys             9703  3 video,thermal,processor
hwmon                    886  3 k8temp,nouveau,thermal_sys
# 

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#26 Post by James C »

01micko wrote:Ok, we can determine that the driver for the hdd is loaded too late. That driver should be built into vmlinuz (and in tahr is probably missing from init.gz). Output of lsmod and lspci -nn will be handy now to figure out what module to make a builtin. Thanks.

Code: Select all

#  lspci -nn
00:00.0 RAM memory [0500]: nVidia Corporation MCP67 Memory Controller [10de:0547] (rev a2)
00:01.0 ISA bridge [0601]: nVidia Corporation MCP67 ISA Bridge [10de:0548] (rev a2)
00:01.1 SMBus [0c05]: nVidia Corporation MCP67 SMBus [10de:0542] (rev a2)
00:02.0 USB Controller [0c03]: nVidia Corporation MCP67 OHCI USB 1.1 Controller [10de:055e] (rev a2)
00:02.1 USB Controller [0c03]: nVidia Corporation MCP67 EHCI USB 2.0 Controller [10de:055f] (rev a2)
00:04.0 USB Controller [0c03]: nVidia Corporation MCP67 OHCI USB 1.1 Controller [10de:055e] (rev a2)
00:04.1 USB Controller [0c03]: nVidia Corporation MCP67 EHCI USB 2.0 Controller [10de:055f] (rev a2)
00:06.0 IDE interface [0101]: nVidia Corporation MCP67 IDE Controller [10de:0560] (rev a1)
00:07.0 Audio device [0403]: nVidia Corporation MCP67 High Definition Audio [10de:055c] (rev a1)
00:08.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Bridge [10de:0561] (rev a2)
00:09.0 IDE interface [0101]: nVidia Corporation MCP67 AHCI Controller [10de:0550] (rev a2)
00:0a.0 Ethernet controller [0200]: nVidia Corporation MCP67 Ethernet [10de:054c] (rev a2)
00:0b.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0562] (rev a2)
00:0c.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0563] (rev a2)
00:0d.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0563] (rev a2)
00:0e.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0563] (rev a2)
00:0f.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0563] (rev a2)
00:10.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0563] (rev a2)
00:11.0 PCI bridge [0604]: nVidia Corporation MCP67 PCI Express Bridge [10de:0563] (rev a2)
00:12.0 VGA compatible controller [0300]: nVidia Corporation C68 [GeForce 7050 PV / nForce 630a] [10de:053b] (rev a2)
00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration [1022:1100]
00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map [1022:1101]
00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller [1022:1102]
00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control [1022:1103]
# 

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#27 Post by James C »

Testing is fun........ :lol: :lol:

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#28 Post by James C »

.
Attachments
Screenshot(1).jpg
(67.31 KiB) Downloaded 856 times

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#29 Post by James C »

Other than the minor kernel panic problem things are working pretty well.....
Attachments
Screenshot.jpg
(66.17 KiB) Downloaded 962 times

User avatar
Billtoo
Posts: 3720
Joined: Tue 07 Apr 2009, 13:47
Location: Ontario Canada

#30 Post by Billtoo »

James C wrote:Other than the minor kernel panic problem things are working pretty well.....
Just wondering, if you go to "/setup/QuickSetup first run settings" and
check the "Run Internet apps as spot" box, does it break the
flashplugin and cause Firefox to crash?

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#31 Post by James C »

Billtoo wrote:
James C wrote:Other than the minor kernel panic problem things are working pretty well.....
Just wondering, if you go to "/setup/QuickSetup first run settings" and
check the "Run Internet apps as spot" box, does it break the
flashplugin and cause Firefox to crash?
Yes indeed.Confirmed.Crashed pretty fast.Got back to root as quick as I could...... :)

User avatar
Billtoo
Posts: 3720
Joined: Tue 07 Apr 2009, 13:47
Location: Ontario Canada

#32 Post by Billtoo »

James C wrote: Yes indeed.Confirmed.Crashed pretty fast.Got back to root as quick as I could...... :)
Me too, thanks for responding.

User avatar
shinobar
Posts: 2672
Joined: Thu 28 May 2009, 09:26
Location: Japan
Contact:

CUPS on Slacko-6.0 alpha

#33 Post by shinobar »

Slacko-6.0 alpha frugal install on ext4 partition.
save-to-direcory works fine.

Encountered same CUPS problem as Tahr pup.
http://www.murga-linux.com/puppy/viewto ... 576#782576
# /usr/lib/cups/backend/usb
direct usb://EPSON/EP-704A "EPSON EP-704A" "EPSON EP-704A" "MFG:EPSON;CMD:ESCPL2,BDC,D4,D4PX,ESCPR2;MDL:EP-704A;CLS:PRINTER;DES:EPSON EP-704A;CID:EpsonRGB;FID:FXN,DPN,WFN,ETN,AFN,DAN;" ""

But the CUPS web interface does not show my USB printer on the list of the Local Prnters

With the same hardware, Slacko 5.7 and Precise Puppy 571JP is fine.
But the Slacko-6.0 alpha and Tahr Puppy 5.8.0.8 shows same problem. :cry:
Last edited by shinobar on Wed 18 Jun 2014, 08:10, edited 2 times in total.
Downloads for Puppy Linux [url]http://shino.pos.to/linux/downloads.html[/url]

User avatar
shinobar
Posts: 2672
Joined: Thu 28 May 2009, 09:26
Location: Japan
Contact:

mksquashfs

#34 Post by shinobar »

/usr/sbin/mksquashfs in slacko-6.0 alpha is a link to mksquashfs3.
It is to be a link to mksquashfs4.
Downloads for Puppy Linux [url]http://shino.pos.to/linux/downloads.html[/url]

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

#35 Post by 01micko »

rcrsn51 wrote:The most recent version of Legacy GRUB Config 2013 is here.

The version in Slacko 591 has a completely different user interface. How did this happen? Has this modified version become the standard in woof-ce?

What testing did this version get to ensure that nothing broke?

The Help button in the modified version links to the forum page of the official version. So who is taking responsibility for providing user support for the modified version?
I'll revert if you like, however it has been there since 5.7.
Puppy Linux Blog - contact me for access

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

Re: mksquashfs

#36 Post by 01micko »

shinobar wrote:/usr/sbin/mksquashfs in slacko-6.0 alpha is a link to mksquashfs3.
It is to be a link to mksquashfs4.
Thanks. I am thinking to remove squash3 support by default. It can be added as a package. I intend to update to mksqushfs-4.3.
Puppy Linux Blog - contact me for access

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

#37 Post by 01micko »

Billtoo. I think the problem is that flash is running with the wrong permissions. I think that flash can be installed on a per user basis so it would install to /spot/.mozilla/firefox/$YOUR_PROFILE/plugins/

If you can move it there, run

Code: Select all

cd /spot/.mozilla/firefox/$YOUR_PROFILE/plugins/
chown spot:spot libflashplayer.so 
Or try without inside your profile just in /spot/.mozilla/firefox/plugins/
#Comment: spot has his own group

See how you go. If that's the case then maybe shinobar's getflash can detect if running as spot and move it there automatically.

As far as kde-games go.. I didn't see it in PPM. Have they split it all up? Or was there a mistake an old 14.0 databases were installed? Was there a /usr/share/applications/kde4/ dir created?
Puppy Linux Blog - contact me for access

User avatar
shinobar
Posts: 2672
Joined: Thu 28 May 2009, 09:26
Location: Japan
Contact:

xorgwizard and shutdownconfig

#38 Post by shinobar »

My GeForce GTX660ti shows odd with nouveau driver. The label of the pinboard on the desktop cannot see. (EDIT: "nouveau.modeset=0" boot option saved this.)

I go the xorgwizard and chose vesa. The xorgwizard require reboot PC. But the shutdownconfig is not invoked. Therefore, reboots without saving session.
Downloads for Puppy Linux [url]http://shino.pos.to/linux/downloads.html[/url]

User avatar
sszindian
Posts: 807
Joined: Sun 25 Apr 2010, 02:14
Location: Pennsylvania U.S.

Tahr

#39 Post by sszindian »

rcrsn51 - check your PM!

>>>---Indian------>
Cloud Computing For Every Puppy (a .pet)
[url]http://murga-linux.com/puppy/viewtopic.php?t=69192[/url]

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

#40 Post by rcrsn51 »

@shinobar: From the Tahr discussion, here is my only suggestion to fix this.

1. Apply the 55-cups.rules patch.
2. Reboot the printer.
3. Confirm that the device node /dev/usb/lp0 has a full set of write permissions.
4. Install in CUPS with the URI: parallel:/dev/usb/lp0
5. Look for error messages.

Post Reply