I found useful information here: http://wiki.debian.org/DebianEeePC
If you try to install GNU/Linux Debian on acer one try to vist http://wiki.debian.org/DebianAcerOne and feel free to contribute! thanks
I've problems with:
. Storage Expansion (where I can find some information??) and Multi-Card reader
. cpu freq scaling of Atom n270 1.60ghz (solved)
Here my /etc/fstab; I use ext2 filesystem for "less write" on solid state disk.
- Code: Select all
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/sda1 / ext2 errors=remount-ro 0 1
/dev/sda2 none swap sw 0 0
tmpfs /var/log tmpfs defaults 0 0
tmpfs /tmp tmpfs defaults 0 0
tmpfs /var/tmp tmpfs defaults 0 0
tmpfs /var/lock tmpfs defaults 0 0
/etc/sysctl.conf - prolong the life of your SSD by writing to the disk every 15 seconds
- Code: Select all
...
set vm.dirty_writeback_centisecs = 1500
Starting service
- Code: Select all
# ls /etc/rc2.d/
README S20gpm S24dhcdbd S99linuxlogo
S10rsyslog S20nfs-common S24hal S99custom
S12acpid S20openbsd-inetd S26network-manager S99rc.local
S12dbus S20policycoreutils S26network-manager-dispatcher S99rmnologin
S16openvpn S21fam S89cron S99stop-bootlogd
S20fancontrol S24avahi-daemon S99kdm
/etc/rc2.d/S99custom - script for create apt directory in tmp
- Code: Select all
#!/bin/bash
mkdir /var/log/apt
Wireless
- Code: Select all
03:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
work with the snapshot driver madwifi-ng-r2756+ar5007.tar.gz http://snapshots.madwifi.org/special/ma ... 007.tar.gz compiled as module
and for use with aircrack-ng you need to do this as root:
- Code: Select all
# ifconfig ath0 down
# wlanconfig ath0 destroy
# airmon-ng start wifi0
# airodump-ng ath0
Webcam
- Code: Select all
acerone:~# lsusb
Bus 005 Device 002: ID 064e:d101 Suyin Corp.
I've installed and compiled from debian testing repository (# apt-get install linux-uvc-source)
- Code: Select all
# modprobe uvcvideo
lspci - here the output of lspci
- Code: Select all
00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 02)
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E PCI Express Fast Ethernet controller (rev 02)
03:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
~/.conkyrc - here my conky configuration file (I use kde with the bottom bar that hide automatically after 2seconds)
- Code: Select all
# Conky sample configuration
#
# the list of variables has been removed from this file in favour
# of keeping the documentation more maintainable.
# Check http://conky.sf.net for an up-to-date-list.
# set to yes if you want Conky to be forked in the background
#background yes
# X font when Xft is disabled, you can pick one with program xfontsel
#font 5x7
#font 6x10
#font 7x13
#font 8x13
#font 9x15
#font *mintsmild.se*
#font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
# Use Xft?
use_xft yes
# Xft font when Xft is enabled
xftfont Arial:size=9
# Text alpha when using Xft
xftalpha 0.9
# Print everything to stdout?
# out_to_console no
# MPD host/port
# mpd_host localhost
# mpd_port 6600
# mpd_password tinker_bell
# Print everything to console?
# out_to_console no
# mail spool
#mail_spool $MAIL
# Update interval in seconds
update_interval 2.0
# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0
# Create own window instead of using desktop (required in nautilus)
own_window yes
# If own_window is yes, you may use type normal, desktop or override
own_window_type normal
# Use pseudo transparency with own_window?
own_window_transparent no
# If own_window_transparent is set to no, you can set the background colour here
#own_window_colour grey
own_window_colour 263149
# If own_window is yes, these window manager hints may be used
own_window_hints undecorated,sticky,below,skip_taskbar,skip_pager
# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
# Minimum size of text area
minimum_size 1024 5
# Draw shades?
draw_shades yes
# Draw outlines?
draw_outline no
# Draw borders around text
draw_borders no
# Draw borders around graphs
draw_graph_borders no
# Stippled borders?
stippled_borders 8
# border margins
border_margin 1
# border width
border_width 1
# Default colors and also border colors
default_color white
default_shade_color black
default_outline_color black
# Text alignment, other possible values are commented
#alignment top_left
#alignment top_right
alignment bottom_left
#alignment bottom_right
#alignment none
# Gap between borders of screen and text
# same thing as passing -x at command line
gap_x 0
gap_y 0
# Subtract file system buffers from used memory?
no_buffers yes
# set to yes if you want all text to be in uppercase
uppercase no
# number of cpu samples to average
# set to 1 to disable averaging
cpu_avg_samples 2
# number of net samples to average
# set to 1 to disable averaging
net_avg_samples 2
# Force UTF8? note that UTF8 support required XFT
override_utf8_locale no
# Add spaces to keep things from moving about? This only affects certain objects.
use_spacer yes
# Maximum size of buffer for user text, i.e. below TEXT line.
#max_user_text 16384
# Allow for the creation of at least this number of port monitors (if 0 or not set, default is 16)
#min_port_monitors 16
# Allow each port monitor to track at least this many connections (if 0 or not set, default is 256)
#min_port_monitor_connections 256
# variable is given either in format $variable or in ${variable}. Latter
# allows characters right after the variable and must be used in network
# stuff because of an argument
# stuff after 'TEXT' will be formatted on screen
TEXT
${color #3d79bd}${time %R %d-%m-%y} ${color #01153d}| ${color #7f8082}CPU: ${color #3d79bd}$cpu${color #7f8082}% ${color #7f8082}. ${color #3d79bd}$freq ${color #7f8082}. ${color #3d79bd}${hwmon temp 2}${color #7f8082}C ${color #01153d}| ${color #7f8082}RAM:${color #3d79bd} $mem${color #7f8082}/$memmax ${color #01153d}| ${color #7f8082}Down:${color #d72f2f} ${downspeedf eth1} ${color #7f8082} Up:${color #138c24} ${upspeedf eth1} ${color #01153d}| ${color #3d79bd}${fs_used /}${color #7f8082}/${fs_size /} ${color #7f8082}I/O: ${color #3d79bd} ${diskio} ${color #01153d}

