LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-24-2013, 07:53 AM   #46
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,065

Rep: Reputation: Disabled
Can't connect to wifi through NetworkManager


[wrongly posted as a reply, opened new thread instead, sorry]

Last edited by Didier Spaier; 10-24-2013 at 08:01 AM.
 
Old 10-24-2013, 08:19 AM   #47
chicken76
Member
 
Registered: Mar 2009
Distribution: Slackware
Posts: 121

Rep: Reputation: 2
Quote:
Originally Posted by mattallmill View Post
I have also pre-ordered the Slackware release. I cannot think of money that is better spent.
Wouldn't a donation be even better, as most of it would go straight to the developers? When buying the disks, a good portion of the money goes towards multiplying and shipping them.
 
Old 10-24-2013, 08:40 AM   #48
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,183

Rep: Reputation: 237Reputation: 237Reputation: 237
Is it possible to add label / uuid support for swap partition in the initrd? This should not be much different than supporting label / uuid for the root partition.
 
Old 10-24-2013, 07:46 PM   #49
afreitascs
Member
 
Registered: Aug 2004
Distribution: Debian
Posts: 443

Rep: Reputation: 30
Quote:
Originally Posted by LukenShiro View Post
I've noticed a tiny problem: slackpkg package's version and shell script's version are not aligned:

/var/log/packages/:
slackpkg-2.82.0-noarch-12

but:

# slackpkg
slackpkg - version 2.81.1
[..]

Quote:
Originally Posted by afreitascs View Post
even here ...
just for the record, is the version of the manual slackpkg which is version 12.1 ....

forgiveness lords
 
Old 10-24-2013, 07:51 PM   #50
1337_powerslacker
Member
 
Registered: Nov 2009
Location: Kansas, USA
Distribution: Slackware64-15.0
Posts: 862
Blog Entries: 9

Rep: Reputation: 592Reputation: 592Reputation: 592Reputation: 592Reputation: 592Reputation: 592
Quote:
Originally Posted by chicken76 View Post
Wouldn't a donation be even better, as most of it would go straight to the developers? When buying the disks, a good portion of the money goes towards multiplying and shipping them.
A very good suggestion. I will consider it for the next release.
 
Old 10-25-2013, 05:20 AM   #51
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,183

Rep: Reputation: 237Reputation: 237Reputation: 237
The scim needs this patch to work with Qt4:

http://www.linuxquestions.org/questi...qt-4175482102/
 
Old 10-25-2013, 09:01 AM   #52
esodax
LQ Newbie
 
Registered: Oct 2013
Posts: 2

Rep: Reputation: Disabled
xterm #296 -> #297, contains changes to handling the xft fontName/Size. Checks for missing bitmaps cells and other...
ChangeLog

[edit]
If there is no known issues with --enable-double-buffer, maybe add it to avoid text "flickering" on slower hardware. That would be nice.

Last edited by esodax; 10-25-2013 at 05:09 PM.
 
Old 10-26-2013, 06:02 AM   #53
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,915

Rep: Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033
rc.M contains this:
Code:
# If we're using udev, make /dev/cdrom and any other optical drive symlinks
# if some udev rule hasn't made them already:
if grep -wq sysfs /proc/mounts && grep -q tmpfs /proc/filesystems; then
  if ! grep -wq nohotplug /proc/cmdline ; then
    if [ -x /lib/udev/rc.optical-symlinks -a -x /etc/rc.d/rc.udev ]; then
      /bin/sh /lib/udev/rc.optical-symlinks
    fi
  fi
fi
My first thought was shouldn't that be grep -q devtmpfs /proc/mounts, but then I found that there is no rc.optical-symlinks file to run, so can this entire snippet go?

Last edited by GazL; 10-26-2013 at 06:04 AM.
 
Old 10-26-2013, 06:39 AM   #54
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,915

Rep: Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033
Also, while we're on the subject of rc.M. These seem like they belong on the end of rc.S so that they take effect when booting into single-user mode:

Code:
# Load a custom screen font if the user has an rc.font script.
if [ -x /etc/rc.d/rc.font ]; then
  . /etc/rc.d/rc.font
fi

# Load a custom keymap if the user has an rc.keymap script.
if [ -x /etc/rc.d/rc.keymap ]; then
  . /etc/rc.d/rc.keymap
fi
I was going to suggest calling rc.font as early as possible (boot messages can be a little small on a high dpi screen before setfont is called, plus setfont also seems to wipe out the console history so scroll back doesn't work), but I've just thought of a better way:
Code:
test@rc2:~$ cat /etc/modprobe.d/nouveau.conf 
install nouveau /sbin/modprobe --ignore-install nouveau $CMDLINE_OPTS && /usr/bin/setfont -m 8859-15 ter-132b.psf.gz
(not suggesting stock slackware should do that mind you, but I think I'm going to use it in place of rc.font).

update: Been playing around with this a little more, and moving the call for rc.font to the end of rc.S also has the advantage of setting the font on all 6 terminals. When it's left to rc.M it only goes on the first (which I'm assuming is because terminals 2-6 will have a getty process established on them by the time rc.M normally runs rc.font.

Last edited by GazL; 10-26-2013 at 12:18 PM.
 
1 members found this post helpful.
Old 10-26-2013, 03:30 PM   #55
xflow7
Member
 
Registered: May 2004
Distribution: Slackware
Posts: 215

Rep: Reputation: 45
If it's not too late, can I suggest this patch for grub?

Fix for Bug#37280

This fixes a problem that evidently crops up on some hardware in which grub fails to terminate the EFI environment and thus won't boot successfully:
http://savannah.gnu.org/bugs/?37280

and which I encountered leading to my rash of posts in the last 24 hours in Slackware on UEFI.

This afternoon I applied that patch to grub, rebuilt the efi images and burned a new installer DVD, and now it boots as it should.

Thanks,

Dave
 
1 members found this post helpful.
Old 10-26-2013, 05:13 PM   #56
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Quote:
Also, while we're on the subject of rc.M. These seem like they belong on the end of rc.S so that they take effect when booting into single-user mode:
I like that suggestion.
 
Old 10-26-2013, 07:22 PM   #57
wildwizard
Member
 
Registered: Apr 2009
Location: Oz
Distribution: slackware64-14.0
Posts: 875

Rep: Reputation: 282Reputation: 282Reputation: 282
Quote:
Originally Posted by GazL View Post
Also, while we're on the subject of rc.M. These seem like they belong on the end of rc.S so that they take effect when booting into single-user mode:
Only one problem, what if some problem occurs with the system and that command causes the console to become unusable and you need to drop to single user mode to fix it?
 
1 members found this post helpful.
Old 10-26-2013, 07:27 PM   #58
j_v
Member
 
Registered: Oct 2011
Distribution: Slackware64
Posts: 364

Rep: Reputation: 67
I think GazL's idea of moving rc.font and rc.keymap invocation to rc.S makes good sense.
wildwizard's point seems important. Too bad there isn't a script in between the two.

Isn't rc.K for going to runlevel 1, not rc.S?

Last edited by j_v; 10-26-2013 at 07:37 PM.
 
Old 10-26-2013, 07:49 PM   #59
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,533

Rep: Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515
Quote:
Originally Posted by GazL View Post
update: Been playing around with this a little more, and moving the call for rc.font to the end of rc.S also has the advantage of setting the font on all 6 terminals. When it's left to rc.M it only goes on the first (which I'm assuming is because terminals 2-6 will have a getty process established on them by the time rc.M normally runs rc.font.
Hmmm... rc.font sets the font on all 6 terminals here.

I can see possibly getting rid of the stale code for the optical-symlinks script, but I'm inclined to say this isn't the time to rearrange much else.
 
Old 10-27-2013, 03:54 AM   #60
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,915

Rep: Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033
Quote:
Originally Posted by volkerdi View Post
Hmmm... rc.font sets the font on all 6 terminals here.
edit: I've just restored them to stock and it seems that you're right. Perhaps it only does the one when you run it from the command-line and I'm getting confused... But I'm sure I had to use a for loop in rc.font in the past to work around this.


Quote:
Originally Posted by volkerdi View Post
I can see possibly getting rid of the stale code for the optical-symlinks script, but I'm inclined to say this isn't the time to rearrange much else.
Yep, that's understandable. I appreciate I was a little last-minute here. It was just something I spotted while poking around looking for bugs.


I'll mention them again sometime after the post-release circus has died down: along with a few other suggestions I've been holding-back for the next cycle.

Last edited by GazL; 10-27-2013 at 06:42 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Slackware 14.1 - Release candidate 1! astrogeek Slackware 86 10-27-2013 08:34 PM
Please test Slackware 14 release candidate 4 Didier Spaier Slackware 1 08-31-2012 02:59 PM
Slackware 13, Release Candidate 2. cwizardone Slackware 17 08-07-2009 01:33 AM
LXer: Slackware 12.0 release candidate 1 is out. LXer Syndicated Linux News 0 06-16-2007 11:31 AM
LXer: Slackware 11.0 release candidate 4 LXer Syndicated Linux News 0 09-03-2006 08:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration