DoK – Where Dreams Come From

C’è chi vede il bicchiere mezzo pieno e chi lo vede mezzo vuoto… Per me, l’acqua che manca, è traboccata fuori ;)

How to purge unused debian conf files

After you uninstall some .deb packages, you need to completely erase all unused configuration files.
You can use one line command like that:

dpkg -l | grep “^rc” | awk -F’ ‘ {‘print $2′} | xargs dpkg –purge

Enjoy your debian icon smile How to purge unused debian conf files

How to purge unused packages on Debian

If you want to automatically purge unused .deb packages on your debian distro (perhaps after an aptitude upgrade), you can safely use this piece of code:

#!/bin/bash
 
while [ `deborphan | wc -l` -gt 0 ]; do
        deborphan | xargs dpkg --purge
done

SMB4K and KDE 4.0.x and KDE 4.1.x

Someone currently use KDE 4.0.x or KDE 4.1.x ???

Someone is a nostalgic user of SMB4K (currently only for KDE 3.x) ???

Well, if you want to use a CVS debianized version of SMB4k, you can use my repository (here you find URL link).

I hope it’s useful for someone icon smile SMB4K and KDE 4.0.x and KDE 4.1.x

Bye,
Salvatore

Debian Repository… a soap opera ????

Hy guys,

yes yes yes yes yes yes yes yes yes, I known. Third change on a month basis… an hell icon smile Debian Repository... a soap opera ????

But, this is the last… it’s TRUE !!!! icon smile Debian Repository... a soap opera ????

An auto_robot_updated debian repo icon smile Debian Repository... a soap opera ????

########################
# ansani.it REPOSITORY #
#######################
#
# BINARY REPOSITORY #
deb http://ansani.it/debian/ stable contrib
deb http://ansani.it/debian/ testing contrib
deb http://ansani.it/debian/ unstable contrib
deb http://ansani.it/debian/ experimental contrib
#
# SOURCES REPOSITORY #
deb-src http://ansani.it/debian/ stable contrib
deb-src http://ansani.it/debian/ testing contrib
deb-src http://ansani.it/debian/ unstable contrib
deb-src http://ansani.it/debian/ experimental contrib

Good debianizing icon smile Debian Repository... a soap opera ????

apt-get sources.list

Hi debian maniacs icon smile apt get sources.list ,
I want to share with you my /etc/apt/sources.list.

I think I inserted all damn good apt-get repository but, if I told a f**ck, please add a comment with another source icon smile apt get sources.list

I’ll wait… icon wink apt get sources.list

###############################
# DEBIAN STANDARDS REPOSITORY #
###############################
# BINARY REPOSITORY #
deb http://ftp.it.debian.org/debian/ stable main contrib non-free
deb http://ftp.it.debian.org/debian/ testing main contrib non-free
deb http://ftp.it.debian.org/debian/ unstable main contrib non-free
deb http://ftp.it.debian.org/debian/ experimental main contrib non-free
# SOURCES REPOSITORY #
deb-src http://ftp.it.debian.org/debian/ stable main contrib non-free
deb-src http://ftp.it.debian.org/debian/ testing main contrib non-free
deb-src http://ftp.it.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.it.debian.org/debian/ experimental main contrib non-free

##############################
# DEBIAN SECURITY REPOSITORY #
##############################
# BINARY REPOSITORY #
deb http://security.debian.org/ stable/updates main contrib non-free
deb http://security.debian.org/ testing/updates main
# SOURCES REPOSITORY #
deb-src http://security.debian.org/ stable/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main

###########################
# DEBIAN PROPOSED UPDATES #
###########################
# BINARY REPOSITORY #
# on follow line you need to use etch-proposed-updates and not stable-proposed-updates, otherwise you got a version conflict error
deb http://ftp.it.debian.org/debian/ etch-proposed-updates contrib non-free main
deb http://ftp.it.debian.org/debian/ testing-proposed-updates contrib non-free main
# SOURCES REPOSITORY #
# on follow line you need to use etch-proposed-updates and not stable-proposed-updates, otherwise you got a version conflict error
deb-src http://ftp.it.debian.org/debian/ etch-proposed-updates contrib non-free main
deb-src http://ftp.it.debian.org/debian/ testing-proposed-updates contrib non-free main

#####################
# DEBIAN MULTIMEDIA #
#####################
# BINARY REPOSITORY #
deb http://www.debian-multimedia.org/ stable main
deb http://www.debian-multimedia.org/ testing main
deb http://www.debian-multimedia.org/ unstable main
deb http://www.debian-multimedia.org/ experimental main
# SOURCES REPOSITORY #
deb-src http://www.debian-multimedia.org/ stable main
deb-src http://www.debian-multimedia.org/ testing main
deb-src http://www.debian-multimedia.org/ unstable main
deb-src http://www.debian-multimedia.org/ experimental main

########################
# aMule CVS REPOSITORY #
########################
# BINARY REPOSITORY #
deb http://www.vollstreckernet.de/debian/ testing amule
# SOURCES REPOSITORY #
deb-src http://www.vollstreckernet.de/debian/ testing amule

########################################
# WineHQ- Debian 4.0 “Etch” REPOSITORY #
########################################
# BINARY REPOSITORY #
deb http://wine.budgetdedicated.com/apt/ etch main
# SOURCES REPOSITORY #
deb-src http://wine.budgetdedicated.com/apt etch main

###################################
# GOOGLE REPOSITORY – BINARY ONLY #
###################################
deb http://dl.google.com/linux/deb/ testing non-free
deb http://dl.google.com/linux/deb/ stable non-free

##################################
# SKYPE REPOSITORY – BINARY ONLY #
##################################
deb http://download.skype.com/linux/repos/debian/ stable non-free

#################################
# wxWidgets/wxPython REPOSITORY #
#################################
# BINARY REPOSITORY #
deb http://apt.wxwidgets.org/ etch-wx main
# SOURCES REPOSITORY #
deb-src http://apt.wxwidgets.org/ etch-wx main

##############################
# DEBIAN VOLATILE REPOSITORY #
##############################
# BINARY REPOSITORY #
deb http://volatile.debian.org/debian-volatile/ etch/volatile main contrib
# SOURCES REPOSITORY #
deb-src http://volatile.debian.org/debian-volatile/ etch/volatile main contrib

############################
# Backports.org Repository #
###########################
# BINARY REPOSITORY #
deb http://www.backports.org/debian etch-backports main contrib non-free

« go backkeep looking »