SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#1 2009-03-12 00:15:02

munkymack
Member
Registered: 2009-03-05
Posts: 20

Crunchbang on the Samsung NC10

Those of you who are running Crunchbang on a Samsung NC10 may have noticed that while it is blazing fast, there are a few tweaks that need to be made to get it completely up to speed. I'll share the links to tweaks I've used here, and hopefully it will be beneficial to others, and people will add to it.

1a. Audio Jack - You may have noticed that plugging headphones or outside speakers in the headphone jack doesn't mute the laptop's speakers. Fortunately, there is a fix for this. *Note - This WILL break your wireless, but there's an easy fix for that too, which is outlined in Tip #1b.

https://help.ubuntu.com/community/NC10# … a%20Driver

1b. Bringing your Wireless back to life
- Now that your audio works, you can watch YouTube videos without disturbing everyone in the coffee shop. Or could if your wireless wasn't broken. But we can install the ath5k madwifi driver, not the one that comes with the initial Ubuntu kernel. *Note - If you only have wireless access (can't plug into the network cable), then do this 1st and the audio fix 2nd.

http://nc10linux.wordpress.com/2008/12/ … rformance/ This works with the current developmental driver - compat-wireless-2009-03-11.tar.bz2, and contrary to what the post says, you don't already have to have another version of the ath5k madwifi driver installed.

2. Working Audio Fn Keys - Now that you have normal audio and working wireless, you will want to be able to control that audio. So add this to the bottom of the keybind section of your rc.xml file, and your Fn+left/right arrow keys will work, just like they are supposed to!

<keybind key="XF86AudioLowerVolume">
    <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    <action name="Execute">
        <execute>amixer -c 0 set Master 2dB-</execute>
    </action>
    </keybind>
<keybind key="XF86AudioRaiseVolume">
    <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    <action name="Execute">
        <execute>amixer -c 0 set Master 2dB+</execute>
    </action>
    </keybind>

To get your mute key working (Alt-F6), add these lines to your rc.xml: (Thanks to SpandexBob for this)

       <keybind key="XF86AudioMute">
      <action name="Execute">
        <execute>amixer -c 0 set Master mute</execute>
      </action>
          <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    </keybind>


3. Screen Brightness
- Currently, the Fn Brightness keys do not work, (the key combination when run through Xev shows no output, so it's not a matter of mapping them correctly in your rc.xml). There is, however, a workaround, by mapping the key combination to the Ctrl Key instead. First, install xbacklight:

sudo apt get install xbacklight

Then add these lines to your rc.xml:

    <keybind key="C-Up">
      <action name="Execute">
        <execute>xbacklight -inc 10</execute>
      </action>
    </keybind>
        <keybind key="C-Down">
      <action name="Execute">
        <execute>xbacklight -dec 10</execute>
      </action>
    </keybind>

on restart, you should be able to control your screen brightness.

More fixes will show up as they get fixed. Hope this helps

Last edited by munkymack (2009-05-02 17:55:22)


"ACME: We add rockets to everything!"

Crunchbang 8.10 / Windows XP (when I have to) | Samsung NC10 w/ 2gb RAM | www.groundcontrolmag.com / www.spilltheblood.net

Offline

Help fund CrunchBang, donate to the project!

#2 2009-03-13 13:07:34

WhyNotCrashDifferently?
#! Member
From: ON, CA
Registered: 2009-01-28
Posts: 59

Re: Crunchbang on the Samsung NC10

munkymack wrote:

1a. Audio Jack - You may have noticed that plugging headphones or outside speakers in the headphone jack doesn't mute the laptop's speakers. Fortunately, there is a fix for this. *Note - This WILL break your wireless, but there's an easy fix for that too, which is outlined in Tip #1b.

Have the same issue on my Sony Vaio. I just mute the laptop speakers in Alsa mixer.


Sony VAIO VGN-N130G
-1.6-GHz Intel Core Duo, Intel GMA 950/128MB, 1 GB RAM, 80 GB HDD

Offline

#3 2009-04-11 14:23:41

Psyman
New Member
Registered: 2009-04-08
Posts: 5

Re: Crunchbang on the Samsung NC10

Might be worth mentioning I found a fix for the awful touchpad behaviour (vertical sensitivity WAY too high) on http://www.linuxonmysamsung.com/showthread.php?tid=41 forums, a patched version of the synaptics  driver. Basically I took a chance and just installed the .deb file and it worked fine smile

Another little thing,  I've noticed while everything is much faster than Ubuntu, the video performance is a little choppy. It's mainly noticeable with the compositing effects when switching desktops. I know the machine is low powered, but I've had the compiz desktop cube running on top of full ubuntu on this machine with no slow down. Only a minor niggle, but I'll look into it and report back

Psy


-------------------------------------------------------------------------------------------
Samsung NC-10 & HP nx63235 / #!Crunchbang Linux / Ubuntu 8.10 / XP
-------------------------------------------------------------------------------------------

Offline

#4 2009-04-23 19:24:43

SpandexBob
Member
Registered: 2009-04-23
Posts: 11

Re: Crunchbang on the Samsung NC10

Just got my NC10 and set it up.  I found that mute (FN+F6) didn't work either.  To enable it i added:

   <keybind key="XF86AudioMute">
      <action name="Execute">
        <execute>amixer -c 0 set Master mute</execute>
      </action>
    </keybind>

to my rc.xml and bobs your uncle i have mute back

Offline

#5 2009-05-01 19:01:21

munkymack
Member
Registered: 2009-03-05
Posts: 20

Re: Crunchbang on the Samsung NC10

SpandexBob wrote:

Just got my NC10 and set it up.  I found that mute (FN+F6) didn't work either.  To enable it i added:

   <keybind key="XF86AudioMute">
      <action name="Execute">
        <execute>amixer -c 0 set Master mute</execute>
      </action>
    </keybind>

to my rc.xml and bobs your uncle i have mute back

Spandex Bob: I made a small tweak to this so that the mute key turns the audio both on and off, and I added it to the first post. Thanks!

Last edited by munkymack (2009-05-02 17:57:29)


"ACME: We add rockets to everything!"

Crunchbang 8.10 / Windows XP (when I have to) | Samsung NC10 w/ 2gb RAM | www.groundcontrolmag.com / www.spilltheblood.net

Offline

#6 2009-08-27 16:14:35

ODH
Member
From: Dresden / Saxony / Germany
Registered: 2009-05-14
Posts: 32
Website

Re: Crunchbang on the Samsung NC10

Hi all,

I eye balled a Samsung NC10 with UMTS module and I've got a few questions about it.
1.: Does anyone got this UMTS module working with #!?
2.: What kind of version did you use on your NC10 - CrunchEee or lite or ... ?

Thanks

Edit:
Bought one NC10 and none of the tips worked for me.
Couldn't get the keybindings working (but the brightness keys worked out of the box) neither got that wlan running well - gcc errors compiling the latest drivers mentioned within the tutorial and loosing internet connection all the time and infrastructure is less than 10 mbits instead of 54 mbit.

Last edited by ODH (2009-09-12 09:40:56)

Offline

#7 2009-09-12 20:21:45

ODH
Member
From: Dresden / Saxony / Germany
Registered: 2009-05-14
Posts: 32
Website

Re: Crunchbang on the Samsung NC10

Sorry for double-posting, just want to push this thread.
Found this nice site with tutorials and a good solution what got nearly everything working for me.

http://www.voria.org/forum/showthread.php?tid=41&page=1

Offline

#8 2012-05-13 23:55:59

boomclart
#! Member
Registered: 2011-11-17
Posts: 77

Re: Crunchbang on the Samsung NC10

Ive used the above xbacklight and ctrl+up/ctrl+down keybindings but brightness only goes down... can't restore brightness via keyboard or term now.


FB | G+ | T

Offline

#9 2012-05-14 00:03:30

boomclart
#! Member
Registered: 2011-11-17
Posts: 77

Re: Crunchbang on the Samsung NC10

Changed it to -inc 20 from -inc 10 and it started working... weird... oh well that will do me.


FB | G+ | T

Offline

#10 2012-05-16 14:31:33

boomclart
#! Member
Registered: 2011-11-17
Posts: 77

Re: Crunchbang on the Samsung NC10

Spoke too soon... it works one minute and not the next... more so it will nearly always work turning the brightness down but back up fails unless done from the term...


FB | G+ | T

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo