LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 09-05-2012, 10:48 AM   #91
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,176

Rep: Reputation: 233Reputation: 233Reputation: 233
KDE NetworkManager icon broken


The KDE NetworkManager tray icon does not show WiFi signal strength in dark themes like Oxygen and Androbit. In bright thems like Aya the WiFi signal strength indicator is visible.

Last edited by guanx; 09-05-2012 at 10:54 AM.
 
Old 09-05-2012, 11:25 AM   #92
ottavio
Member
 
Registered: Nov 2007
Posts: 312

Rep: Reputation: 46
Quote:
Originally Posted by ReaperX7 View Post
BlackRider, you should read the post "Slackware from Scratch(?)" I posted here in regards to using a BSD style audit system for Slackware and the ability to recompile Slackware's base and base development system from scratch if needed, and maybe even other packages as well.
I read your posts. I don't usually agree with you but I do on this one. Worst come worst you can always revive the old project of porting Netbds's pkgsrc to Slackware. Unfortunately I don't have either the skills or the time.

Last edited by ottavio; 09-05-2012 at 11:27 AM.
 
Old 09-05-2012, 02:47 PM   #93
tpreitzel
Member
 
Registered: Aug 2007
Posts: 253

Rep: Reputation: 28
/dev/shm

Is udev setting the correct permissions on /dev/shm at drwxr-xr-x ?

Real time audio, e.g. Jack Audio Connection Kit, doesn't have write permission if started as a user of group, root...

Due to unresolved problems reading optical discs, some of us must constantly reload udev's rules which naturally resets permissions to their defaults so modifying rc.local or fstab isn't a solution unfortunately.

Last edited by tpreitzel; 09-05-2012 at 04:15 PM.
 
Old 09-05-2012, 04:00 PM   #94
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,176

Rep: Reputation: 233Reputation: 233Reputation: 233
ALSA Bluetooth broken

I was using my custom built 3.2.28 kernel and the same blueman as that in RC4 (all other packages from a -current snapshot few months ago). My Sony MW600 headset worked flawlessly. But now in RC4 I cannot connect my headset with blueman. In dmesg I see this strange message:
Code:
input: 58:17:XX:XX:XX:XX as /devices/virtual/input/input8
Seems my headset is recognized as an input device.

When I try to use blueman to connect to the A2DP service of my headset, blueman says
Code:
Stream setup failed

Last edited by guanx; 09-05-2012 at 04:03 PM.
 
Old 09-05-2012, 06:20 PM   #95
D1ver
Member
 
Registered: Jan 2010
Distribution: Slackware 13.37
Posts: 598
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
Very minor issue, but in 14.0 when using KDE, by default I end up with two bluetooth applets (kde and blueman-applet). I'm not sure how to disable the blueman-applet when KDE is running and enable it in xfce. It doesn't seem like it's being started by either WM/DE.

Very minor, but kinda annoying.
 
Old 09-05-2012, 07:16 PM   #96
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Look in /etc/xdg//autostart?
 
Old 09-05-2012, 07:28 PM   #97
slackcode
LQ Newbie
 
Registered: Sep 2007
Location: China
Distribution: slackware
Posts: 25

Rep: Reputation: 0
Fri Aug 24 20:08:37 UTC 2012
This is Slackware 14.0 release candidate 3, and is hopefully the last stop
on our long road to a stable Slackware release soon. After hearing that
the 3.4.x kernel series will have long term support, I tested 3.4.9 hoping
that it would prove stable enough to use that as the release kernel, but
there are problems with an oops in kernel/time/clocksource.c every few boots.
Given that the 3.2.x series has been very stable, it seems prudent to stick
with that for release, and 3.2.28 is going to be the release kernel. So,
one more round of testing. Let me know if there are any problems. Thanks!

I just think the 3.4 kernel is a good choice
 
Old 09-05-2012, 07:38 PM   #98
D1ver
Member
 
Registered: Jan 2010
Distribution: Slackware 13.37
Posts: 598
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
Quote:
Originally Posted by Woodsman View Post
Look in /etc/xdg//autostart?
Ok, there is an entry there for blueman.desktop in that directory.

Sorry for noobness, I don't know what to do with it in order for it not to start in KDE and start in other environments.
 
Old 09-05-2012, 07:52 PM   #99
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
If you don't want the app to start for any users, you can delete the blueman.desktop file. Or you can add the following:

[Desktop Entry]
Hidden=true

If you want only user control, then for each user who doesn't want the app to run, create the following text file in $HOME/.config/autostart:

blueman.desktop

The contents of which is only:

[Desktop Entry]
Hidden=true

I believe Xfce and KDE provide GUI tool to create the user file. I don't know about other desktops or window managers.

Last edited by Woodsman; 09-05-2012 at 07:53 PM.
 
Old 09-05-2012, 08:01 PM   #100
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
If you don't want it to show up in KDE then copy the file to ~/.config/autostart and add the line
Code:
NotShowIn=KDE;
to the file.
 
Old 09-05-2012, 08:07 PM   #101
D1ver
Member
 
Registered: Jan 2010
Distribution: Slackware 13.37
Posts: 598
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
Ok beautiful, thank you both.
 
Old 09-05-2012, 08:11 PM   #102
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,086

Rep: Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262
Quote:
Originally Posted by guanx View Post
The KDE NetworkManager tray icon does not show WiFi signal strength in dark themes like Oxygen and Androbit. In bright thems like Aya the WiFi signal strength indicator is visible.
The first thing I do is remove the NetworkManager icon from the system tray and add the NetworkManager widget to the panel, just to the left of the system tray. Shows up very nicely with the darker themes.
 
1 members found this post helpful.
Old 09-06-2012, 01:24 AM   #103
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,176

Rep: Reputation: 233Reputation: 233Reputation: 233
Quote:
Originally Posted by cwizardone View Post
The first thing I do is remove the NetworkManager icon from the system tray and add the NetworkManager widget to the panel, just to the left of the system tray. Shows up very nicely with the darker themes.
The same problem --
Attached Thumbnails
Click image for larger version

Name:	Oxygen.png
Views:	69
Size:	7.9 KB
ID:	10591   Click image for larger version

Name:	Aya.png
Views:	65
Size:	11.4 KB
ID:	10592  
 
Old 09-06-2012, 01:36 AM   #104
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,176

Rep: Reputation: 233Reputation: 233Reputation: 233
Quote:
Originally Posted by slackcode View Post
...

I just think the 3.4 kernel is a good choice
Not tried yet, but 3.2.28 + udev-182 is causing a 30s delay on startup here. Very, very annoying!

EDIT:
Searching the web for "udev 30 seconds" redirected me to ArchWiki. I tried the solution from there (to add the problematic module, ipw2200 in my case, to the initrd) and everything is ok now.

Last edited by guanx; 09-06-2012 at 02:24 AM.
 
1 members found this post helpful.
Old 09-06-2012, 08:28 AM   #105
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,086

Rep: Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262
Quote:
Originally Posted by guanx View Post
The same problem --
Here you go. Done with the sima84 desktop theme.
Attached Thumbnails
Click image for larger version

Name:	desktopNM-01c.jpg
Views:	68
Size:	14.9 KB
ID:	10598  
 
  


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
rc4 kernel module azza Programming 1 06-28-2009 03:25 PM
INIT 4(rc4.d) guruvayur Linux - General 1 01-27-2009 04:39 AM
no modem slack 10.2, 2.6.16-rc4 teamjt Linux - Laptop and Netbook 1 02-28-2006 09:45 AM
AES vs RC4 vs TKIP jspsandhu Linux - Security 4 07-19-2005 08:50 AM
RC4 encryption koningshoed Linux - Security 4 01-27-2003 04:00 PM

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

All times are GMT -5. The time now is 10:14 AM.

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