Ad Hoc Wireless Networking in Linux

Ad Hoc Wireless Networking in Linux
https://help.ubuntu.com/community/WifiDocs/Adhoc

Read the rest of Ad Hoc Wireless Networking in Linux

analyze disk usage

echo 1 > /proc/sys/vm/block_dump
enables you to see via dmesg and syslog which application is accessign the disk and for doing what
blktrace
from blktrace package (sudo apt-get install blktrace) is also useful since it prompts you with those applications that access your hd the most. Use it this way:
bltrace /dev/sda

Read the rest of analyze disk usage

using sysctl and sysfs to tweak /proc and /sys parameters

using sysctl and sysfs to tweak /proc and /sys parameters can be useful in order to permanently set powertop suggestions or not to have to recompile the kernel for only one value change.
lm-profiler
helps disabling unneeded services
You can use sysctl to tweak the running kernel parameters (tweak /proc entries)
and /etc/sysctl.conf to apply these settings permanently
e.g. including [...]

Read the rest of using sysctl and sysfs to tweak /proc and /sys parameters

Ubuntu Kernel Debugging

https://wiki.ubuntu.com/KernelTeamBugPolicies

Read the rest of Ubuntu Kernel Debugging

Linking Within an HTML Document

Creating a link within the same HTML document or to a specific fragment of another document is a two-step process. The first step is to make the target fragment; the second is to create the link to the fragment.
Use the <a> tag with its name attribute to identify a fragment. The value of the name [...]

Read the rest of Linking Within an HTML Document

Come connettersi ad internet attraverso un’ADSL con cavo ethernet e password (PPPoE)

Come connettersi ad internet attraverso un’ADSL con cavo ethernet, nome utente e password (PPPoE)Connettersi ad internet con un cavo ethernet ed una connessione flat 24/7 è semplice quanto inserire il cavetto nell’apposita presa.
Leggermente più complesso è il procedimento se possiedi una connessione a tempo (in cui paghi in base a quanto tempo stai collegato). Infatti [...]

Read the rest of Come connettersi ad internet attraverso un’ADSL con cavo ethernet e password (PPPoE)

How to connect to internet through an ADSL ethernet modem

How to connect to internet through an ADSL ethernet modem with username and password (PPPoE)
Connecting to internet with a flat connection is really as easy as pluggin in the ethernet cable.
Little more complex is when you have to log in since you pay per time your internet connection.
In order to set your username and [...]

Read the rest of How to connect to internet through an ADSL ethernet modem

automatic missing key adding for apt-get

in order to automatically download missing authentication keys for third party apt-get repositories I suggest a handy script published by Trevino (I haven’t tested it yet though).
sudo apt-get update 2> /tmp/keymissing; for key in $(grep “NO_PUBKEY” /tmp/keymissing |sed “s/.*NO_PUBKEY //”); do echo -e “\nProcessing key: $key”; sudo gpg –keyserver subkeys.pgp.net –recv $key && sudo gpg [...]

Read the rest of automatic missing key adding for apt-get

Monitoring Real-time user logins in ubuntu

sudo apt-get install whowatch
Whowatch is an console, interactive users and process monitoring tool.It displays information about the users currently logged on to the machine, in real-time. Besides standard informations (login name, tty,host, userâs process), the type of the connection (ie. telnet or ssh) is shown. Display of users command line can be switch to tty [...]

Read the rest of Monitoring Real-time user logins in ubuntu

update-initramfs updating your initial ramdisk

After having installed a new kernel (or an update version of it) or also other boot related stuff it is necessary to rebuild the initial ramdisk using the following command in order to get the changes effective:
update-initramfs -c -k $(uname -r)

Read the rest of update-initramfs updating your initial ramdisk