When you format an disk with ext4 a default of 5% reserved blocks are for privileged processes. In case the file system fills up important process can still fill up and continue to function.
To reduce the 5 % to 1 % use the following command:
sudo tune2fs -m 1 /dev/sda1
Make sure you use the correct partition.
Belgacom heeft op 31/10/2009, de volgende poorten geblokkeerd:
- 23 (telnet)
- 80 (http)
- 443 (https)
Dit enkel voor inkomend verkeer. Maar volgens dit forum thread kan je telefonisch (080022700 optie 1) of vanaf volgende week open zetten via de e-service na aanvaarden van de nodige risico voorwaarden.
Misschien probeert Belgacom hiermee de hacker te snel af te zijn. maar volgens mij is het geen goede zet. Zeker dat mensen die poorten gebruiken voor video bewaking, remote management en andere voorziening.
Maar er is altijd een mogelijkheid om de poorten nummers te veranderen via het LAN servers.
Maar voor mij is de belangrijkste vraag waarom niet gedeeltelijk of volledige toegeven aan de hacker en de datalimiet iets verhogen of zit er meer achter? Dan natuurlijk ook een patch uitbrengen voor de exploit in de firmware.
Meer overzicht van gesloten poorten inclusief die hier boven: http://tinyurl.com/closedports.
Update:
Als commentaar door mouse256, je kan de poorten terug open door te surfen naar Belgacom e-service site en dan kiezen voor de optie “Basic Security” onder “Mijn internet –> Mijn Opties”
I was reading an interesting story about squid to save bandwidth with apt-get, more info about that can be found here(squid and debian packages).
But to make more use of the squid I had installed and only one nic, I was looking for a solution: Transparent proxy server with one nic
For more information on how to setup squid3 as transparent proxy can be found here.
After modifying the config for my purposes, which you can find below, I was all set. It’s a great solution that’s going to save me some more bandwidth
Changes to the /etc/network/interfaces:
auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.1.5 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1 auto eth0:0 iface eth0:0 inet static name Ethernet alias LAN card address 192.168.2.1 netmask 255.255.255.0 broadcast 192.168.2.255 network 192.168.2.0
The script that makes it all possible(changed from the solution I found):
#!/bin/sh # Squid server IP SQUID_SERVER="192.168.1.5" # Interface connected to Internet INTERNET="eth0" # Address connected to LAN LOCAL="192.168.2.0/24" LOCAL2="192.168.1.0/24" # Squid port SQUID_PORT="3128" # Clean old firewall iptables -F iptables -X iptables -t nat -F iptables -t nat -X iptables -t mangle -F iptables -t mangle -X # Enable Forwarding echo 1 > /proc/sys/net/ipv4/ip_forward # Setting default filter policy iptables -P INPUT DROP iptables -P OUTPUT ACCEPT # Unlimited access to loop back iptables -A INPUT -i lo -j ACCEPT iptables -A OUTPUT -o lo -j ACCEPT # Allow UDP, DNS and Passive FTP iptables -A INPUT -i $INTERNET -m state --state ESTABLISHED,RELATED -j ACCEPT # set this system as a router for Rest of LAN iptables -t nat -A POSTROUTING -o $INTERNET -j MASQUERADE iptables -A FORWARD -s $LOCAL -j ACCEPT # unlimited access to LAN iptables -A INPUT -s $LOCAL -j ACCEPT iptables -A OUTPUT -s $LOCAL -j ACCEPT # DNAT port 80 request comming from LAN systems to squid 3128 ($SQUID_PORT) aka transparent proxy iptables -t nat -A PREROUTING -s $LOCAL -p tcp --dport 80 -j DNAT --to $SQUID_SERVER:$SQUID_PORT iptables -t nat -A PREROUTING -s $LOCAL2 -p tcp --dport 80 -j DNAT --to $SQUID_SERVER:$SQUID_PORT # if it is same system iptables -t nat -A PREROUTING -i $INTERNET -p tcp --dport 80 -j REDIRECT --to-port $SQUID_PORT #open everything iptables -A INPUT -i $INTERNET -j ACCEPT iptables -A OUTPUT -o $INTERNET -j ACCEPT # DROP everything and Log it iptables -A INPUT -j LOG iptables -A INPUT -j DROP
Time Drive is now available for ppa more can be read here.
Nothing more needs to be said about it:
https://launchpad.net/~time-drive-devel/+archive/stable
for you sources.list:
deb http://ppa.launchpad.net/time-drive-devel/stable/ubuntu jaunty main deb-src http://ppa.launchpad.net/time-drive-devel/stable/ubuntu jaunty main
Also available for karmic:
deb http://ppa.launchpad.net/time-drive-devel/stable/ubuntu karmic main deb-src http://ppa.launchpad.net/time-drive-devel/stable/ubuntu karmic main
or by adding ppa:time-drive-devel/stable to your system’s Software Sources
For almost daily testing releases can be found here or just change stable to ppa.
In the upcoming version of Time-Drive, locales are enabled, Launchpad is used to manage the translations.
If you want to see this program translated in your language, just go to https://translations.launchpad.net/time-drive/trunk and help out.
The locales will be included in the upcoming 0.3 release of Time-Drive. It will also include the possibility to include a port number for remote services and other enhancements and features.
Each day the translations are sync with the current trunk. At the moment I’m buzzy translating it into dutch, help is always appreciated.
Everyone is welcome to help out with the translation of Time-Drive into there own language.
Time Drive 0.2 – A “More S” Release: More Stable, More Secure, More Settings and Now Supports Amazon S3 Storage
This is my first release of an opensource program, And it feels good to share it with all of you out there.
Time Drive 0.2 is started by Robert Oaks (More info on the start you can find here) which did already a tremendous good job with version 0.1, but it had issues like stability is one of them, and those are now in the past tense .
In short: I started to get involved in the development process and in a mater of day I was committing my first changes to the source code of Time Drive. The result of the cooperation between Robert Oaks and me is Time Drive 0.2. The source code and the release can be downloaded of launchpad.
Some features are:
- More Settings: Different Storage Locations, Manage Your Backup Sets
- Amazon S3 Storage
More info about the release can be found here. Time Drive 0.2 can be downloaded here.
Any question regarding problems, bugs or feature request, just contact me or Rob Oakes
If your Menu in Ubuntu has no icons. You can easily made the visible by enabling the following options: “Show icons in menus”
This can be found in: System->Preferences->Appearence->Interface

