Difference between revisions of "Debian"

From Alessandro's Wiki
Line 1: Line 1:


Linux Distribution


''l'ho installlato, l'ho usato, bello, ma mi si è rotto il disco e sono tornato a fedora.


l'ho reinstallato (Debian) , su un altro disco, l'ho usato, l'ho aggiornato..
http://www.debian.org/


... si è rotto il disco.
= APT =


va.......o Debian ho installato gentoo su un raid1. Perfetto''
== testing software ==


* add the backport repo: /etc/apt/sources.list
deb http://backports.debian.org/debian-backports lenny-backports main contrib non-free"
* update.....
apt-get update
* install the newest package
aptitude -t lenny-backports install <latest_software>


== how big is your disk ==
* this will tell you how much disk space the next upgrade will take
# apt-get -o APT::Get::Trivial-Only=true dist-upgrade


Linux Distribution
= General =
 


http://www.debian.org/
= locale settings =
 
 
= locale =


* edit the file:
* edit the file:
Line 37: Line 42:
  en_IN UTF-8
  en_IN UTF-8


== update system db ==
  /etc/environment && locale-gen
  . /etc/environment && locale-gen
 
== testing software ==
 
* add the backport repo:
echo "deb http://backports.debian.org/debian-backports lenny-backports main contrib non-free" >> /etc/apt/sources.list
* update.....
apt-get update
* install the newest package
aptitude -t lenny-backports install <latest_software>
 
== how big is your disk ==
 
*
# apt-get -o APT::Get::Trivial-Only=true dist-upgrade

Revision as of 22:53, 23 April 2012

Linux Distribution


http://www.debian.org/

APT

testing software

  • add the backport repo: /etc/apt/sources.list
deb http://backports.debian.org/debian-backports lenny-backports main contrib non-free" 
  • update.....
apt-get update
  • install the newest package
aptitude -t lenny-backports install <latest_software>

how big is your disk

  • this will tell you how much disk space the next upgrade will take
# apt-get -o APT::Get::Trivial-Only=true dist-upgrade

General

locale settings

  • edit the file:
/etc/environment
;;;
LANG=en_IN
LC_MESSAGES=en_IN
  • or
LANG=it_IT
LC_MESSAGES=it_IT
  • and
/etc/locale.gen
;;;
en_US.UTF-8 UTF-8
it_IT ISO-8859-1
it_IT.UTF-8 UTF-8
it_IT@euro ISO-8859-15
en_IN UTF-8
/etc/environment && locale-gen