31 dic 2013
29 dic 2013
21 dic 2013
20 dic 2013
17 dic 2013
Elementary Update
Top Things To Do After Installing Luna : Elementary Update: MIDORI AND FLASH
eOS comes with the awesome lightweight browser Midori (pronounce it “midoɺi”, with a Spanish/ Japanese “r”). To get Flash working for it, you'll need to install ndiswrapper and do some tweaking, but don't fret, it's easier than it sounds. Just open up your Terminal (CTRL ALT T) and type in:
sudo apt-get install flashplugin-installer nspluginwrapper
sudo nspluginwrapper -i /usr/lib/flashplugin-installer/libflashplayer.so
nspluginwrapper -v -a -n -i
Update: Lewis Goddard has created a script that fixes flash in Midori if the above does not work for you here. Just follow the instructions provided there.
That's it, Midori should run Flash now!
on WifiCard Intel
To disables tcp window scaling you need to add the line below to your /etc/sysctl.conf.
net.ipv4. tcp_window_ scaling= 0
To reset run
sudo sysctl -p
options iwl3945 disable_hw_scan=1
in „/etc/modprobe. conf“. or
sudo iwconfig wlan0 power off
I did seem to make the problem go away (or at least recurring less often) by adding
Right after I commented above, I started Googling in a different direction and found this bug report in Red Hat (see comment #10):
https:/ /bugzilla. redhat. com/show_ bug.cgi? id=503983
Basically they said that the N-mode that was causing connection drops, so I added this line to /etc/modprobe. d/options. conf, and it works great then.
options iwlagn 11n_disable=1 11n_disable50=1
ipv6.disable=1 in kernel boot
options iwlagn 11n_disable=1 11n_disable50=1
eOS comes with the awesome lightweight browser Midori (pronounce it “midoɺi”, with a Spanish/ Japanese “r”). To get Flash working for it, you'll need to install ndiswrapper and do some tweaking, but don't fret, it's easier than it sounds. Just open up your Terminal (CTRL ALT T) and type in:
sudo apt-get install flashplugin-installer nspluginwrapper
sudo nspluginwrapper -i /usr/lib/flashplugin-installer/libflashplayer.so
nspluginwrapper -v -a -n -i
Update: Lewis Goddard has created a script that fixes flash in Midori if the above does not work for you here. Just follow the instructions provided there.
That's it, Midori should run Flash now!
on WifiCard Intel
To disables tcp window scaling you need to add the line below to your /etc/sysctl.conf.
net.ipv4.
To reset run
sudo sysctl -p
options iwl3945 disable_hw_scan=1
in „/etc/modprobe.
/etc/modprobe.d/iwl3945.conf
sudo iwconfig wlan0 power off
I did seem to make the problem go away (or at least recurring less often) by adding
wireless-power off
at the end of /etc/network/interfaces
and reboot. Right after I commented above, I started Googling in a different direction and found this bug report in Red Hat (see comment #10):
https:/
Basically they said that the N-mode that was causing connection drops, so I added this line to /etc/modprobe.
options iwlagn 11n_disable=1 11n_disable50=1
ipv6.disable=1 in kernel boot
options iwlagn 11n_disable=1 11n_disable50=1
16 dic 2013
15 dic 2013
13 dic 2013
9 dic 2013
8 dic 2013
4 dic 2013
2 dic 2013
Bios latency
http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/oh-the-irony-dpc-latency-high-with-idle-cpu-100/5b0fe7d2-28ac-417f-84b4-823fa535538c
19 nov 2013
18 nov 2013
14 nov 2013
7 nov 2013
6 nov 2013
4 nov 2013
23 oct 2013
15 oct 2013
11 oct 2013
10 oct 2013
8 oct 2013
6 oct 2013
4 oct 2013
30 sept 2013
28 sept 2013
20 sept 2013
Wordpress sliders
wordpress.org/plugins/jsj-gallery-slideshow/
http://wordpress.org/plugins/ml-slider/screenshots/
17 sept 2013
10 sept 2013
5 sept 2013
4 sept 2013
1 sept 2013
15 ago 2013
13 ago 2013
6 ago 2013
Webdav for users
http://hexeract.wordpress.com/2011/02/25/configure-a-webdav-enabled-webserver-for-multiple-user-folders-and-one-shared-folder/
31 jul 2013
30 jul 2013
22 jul 2013
18 jul 2013
15 jul 2013
12 jul 2013
9 jul 2013
3 jul 2013
rk2818 kernel img
Official X10 Airpad ROM image - SlateDroid.com:
The kernel.img (extracted from the firmware images with the wendal tools) seems to be different.
But it realy looks like a normal kernel
* I stripped the header (8bytes)
* I ran it through a disassembler [loading at c0408000]
* I checks various function entrie points (usbin /proc/kallsyms and the vanilla kernel source)
all functions i check where at the right point
* the method discriped in the rk29xx wendal thread can be used for the kernel to
- using wendal tools extract the kernel.img
- ls -l kernel.img (and note the file size)
- strip header & footer
dd if=kernel.img of=kernel.bin bs=1 skip=8 size=(filesize-12)
- reapply header & footer
rkcrc -p kernel.bin newkernel.img (ps modify rkcrc with correct header tag)
- verify kernel.img newkernel.img
rkcrc recreated an exact copy from the stripped kernel.bin
P.S. 2nd 4 bytes from header is the size
bytes 0..3 KRNL
bytes 4..7 08 bd 7b 00 (little endian) 0x7BBD08 = 8109320 = size of kernel
The kernel.img (extracted from the firmware images with the wendal tools) seems to be different.
But it realy looks like a normal kernel
* I stripped the header (8bytes)
* I ran it through a disassembler [loading at c0408000]
* I checks various function entrie points (usbin /proc/kallsyms and the vanilla kernel source)
all functions i check where at the right point
* the method discriped in the rk29xx wendal thread can be used for the kernel to
- using wendal tools extract the kernel.img
- ls -l kernel.img (and note the file size)
- strip header & footer
dd if=kernel.img of=kernel.bin bs=1 skip=8 size=(filesize-12)
- reapply header & footer
rkcrc -p kernel.bin newkernel.img (ps modify rkcrc with correct header tag)
- verify kernel.img newkernel.img
rkcrc recreated an exact copy from the stripped kernel.bin
P.S. 2nd 4 bytes from header is the size
bytes 0..3 KRNL
bytes 4..7 08 bd 7b 00 (little endian) 0x7BBD08 = 8109320 = size of kernel
2 jul 2013
1 jul 2013
16 jun 2013
14 jun 2013
13 jun 2013
10 jun 2013
5 jun 2013
4 jun 2013
2 jun 2013
29 may 2013
27 may 2013
23 may 2013
21 may 2013
17 may 2013
16 may 2013
14 may 2013
13 may 2013
12 may 2013
5 may 2013
2 may 2013
28 abr 2013
27 abr 2013
23 abr 2013
21 abr 2013
19 abr 2013
18 abr 2013
17 abr 2013
8 abr 2013
7 abr 2013
6 abr 2013
3 abr 2013
15 mar 2013
6 mar 2013
16 feb 2013
12 feb 2013
9 feb 2013
5 feb 2013
3 feb 2013
28 ene 2013
26 ene 2013
23 ene 2013
19 ene 2013
17 ene 2013
16 ene 2013
15 ene 2013
14 ene 2013
13 ene 2013
Suscribirse a:
Entradas (Atom)