Immagine
 Italian Betacrew... di Admin
Di seguito gli interventi pubblicati in questa sezione, in ordine cronologico.
 
 
Di ir0nfl4m3 (del 02/09/2009 @ 16:15:49, in Howto, linkato 2075 volte)

Ciao a tutti,

se avete bisogno di creare un'immagine su disco di un dvd o cd questa procedura semplice e veloce.

A cd non montato potete usare il comando:

dd if=/dev/dvd of=dvd.iso # se é un dvd
dd if=/dev/cdrom of=cd.iso # se é un cdrom
dd if=/dev/scd0 of=cd.iso # se é un lettore scsi

Per creare invece una iso da file su disco il comando é il seguente:

mount -t iso9660 -o ro /dev/cdrom /mnt/cdrom

mkisofs -r -o immagine.iso /media/cdrom0

Alla prossima :)

 
Di Admin (del 08/07/2008 @ 20:09:39, in Howto, linkato 10519 volte)

This was written using OpenSSL 0.9.5 as a reference.

To start with, you'll need OpenSSL. Compilation and installation follow the usual methods. It's worth while to note that the default installs everything in /usr/local/ssl. No need to change this (unless you want to).

After you have this installed, you may want to edit the OpenSSL configuration file with the information for your site so you have pleasant defaults when creating and signing certificates. You'll find this in /usr/local/ssl/openssl.cnf in the section req_distinguished_name Here you can set the defaults (denoted by the _default appended to the variable name). Any settings that do not have a default, such as localityName can have one set by appending _default. In this case you'd set localityName_default.

Now, we move on to creating a private Certificate Authority (CA). First, some explanation. The CA is used in SSL to verify the authenticity of a given certificate. The CA acts as a trusted third party who has authenticated the user of the signed certificate as being who they say. The certificate is signed by the CA, and if the client trusts the CA, it will trust your certificate. For use within your organization, a private CA will probably serve your needs. However, if you intend use your certificates for a public service, you should probably obtain a certificate from a known CA.

In addition to identification, your certificate is also used for encryption. If you're thinking a certificate sounds similar to a PGP key, you're right. They use many of the same methods. Something else PGP and SSL have in common is the RSA encryption algorithm, which is patented. This patent expires in September of 2000, so after that you'll be free to use tools with the RSA algorithm (like OpenSSL). Until that time, to legally use RSA you need a license. RSA Data Security usually allows non-commercial use of the RSA algorithm for academic purposes.

Creating a private CA

  • Go to the OpenSSL bin directory (/usr/local/ssl/misc by default).
  • There should be a script called CA.sh (and a CA.pl that does the same stuff). This hides all the gruesome details of how this works. Without the script this is a very annoying process.
  • su to root
    • Make sure that the OpenSSL bin directory is in your path.
  • ./CA.sh -newca
    • When prompted for CA filename hit return.
    • Answer the rest of the questions intelligently. The common name would be how this certificate might be referred to. For example, the Equifax Secure CA uses the common name of Equifax Secure Certificate Authority.

Creating certificates

  • ./CA.sh -newreq
    • This creates an unsigned certificate request.
    • The procedure is the same as creating a private CA except you'll want to use the name of the host that will use the certificate as the common name (host.domain.com). If they don't match, the client will not like it.
    • You probably don't want to use the same passphrase for this as you did with the CA.
  • ./CA.sh -sign
    • It will ask for a PEM pass phrase, that's the passphrase you set for the private CA you created.
    • This signs the certificate that you just created with the CA you created just moments before. You can generate multiple certificates. You'll probably need to. For example, mail.foo.com and www.foo.com each need their own certificate.
  • The signed certificate is now in the current directory as newcert.pem. If you are going to create more, you should rename this or it will be overwritten be subsequent signatures.

Creating client-side certificates

  • openssl pkcs12 -export -in certs.pem -inkey certs.key -out file.p12 -name "Client Certificate"
 
Di Admin (del 06/07/2008 @ 00:56:26, in Howto, linkato 11593 volte)
##################################################################################
## INGALEX UBUNTU HARDY HERON 8.04 REPOSITORY SOURCES.LIST ## TOTAL:55 REPOSITORY#
##################################################################################

##HARDY SUPPORTED
deb http://it.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy main restricted

##HARDY SUPPORTED - UPDATES
deb http://it.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-updates main restricted

##HARDY SUPPORTED - PROPOSED
deb http://it.archive.ubuntu.com/ubuntu/ hardy-proposed main restricted
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-proposed main restricted

##HARDY SUPPORTED - SECURITY
deb http://security.ubuntu.com/ubuntu/ hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu/ hardy-security main restricted

##HARDY COMMUNITY SUPPORTED
#deb http://it.archive.ubuntu.com/ubuntu/ hardy universe multiverse
#deb-src http://it.archive.ubuntu.com/ubuntu/ hardy universe multiverse

##HARDY COMMUNITY SUPPORTED - UPDATES
#deb http://it.archive.ubuntu.com/ubuntu/ hardy-updates universe multiverse
#deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-updates universe multiverse

##HARDY COMMUNITY SUPPORTED - PROPOSED
#deb http://it.archive.ubuntu.com/ubuntu/ hardy-proposed universe multiverse
#deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-proposed universe multiverse

##HARDY COMMUNITY SUPPORTED - SECURITY
#deb http://security.ubuntu.com/ubuntu/ hardy-security universe multiverse
#deb-src http://security.ubuntu.com/ubuntu/ hardy-security universe multiverse

##BACKPORTS
deb http://it.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository. This software is not part of Ubuntu, but is
## offered by Canonical and the respective vendors as a service to Ubuntu
## users.
deb http://archive.canonical.com/ubuntu hardy partner

## Emesene
deb http://apt.emesene.org/ ./
# deb-src http://apt.emesene.org/ ./

## WICD
# deb http://wicd.longren.org hardy all


## Medibuntu - Ubuntu 8.04 "hardy heron"
## Please report any bug on https://bugs.launchpad.net/medibuntu/
#deb http://packages.medibuntu.org/ hardy free non-free
#deb-src http://packages.medibuntu.org/ hardy free non-free

## UBUNTU SATANIC
deb http://ubuntusatanic.org/hell hardy main

## REPOSITORY DI PACCHETTI INSTABILI LAUNCHPAD

deb http://ppa.launchpad.net/project-neon/ubuntu hardy main
deb http://ppa.launchpad.net/fta/ubuntu hardy main
deb http://ppa.launchpad.net/mvo/ubuntu hardy main
deb http://ppa.launchpad.net/googlegadgets/ubuntu hardy main
deb-src http://ppa.launchpad.net/googlegadgets/ubuntu hardy main
deb http://ppa.launchpad.net/festor90/ubuntu hardy main

##BLUEMAN

deb http://download.tuxfamily.org/blueman hardy blueman
deb-src http://download.tuxfamily.org/blueman hardy blueman

## Akirad-Hardy - Ubuntu 8.04 "Hardy Heron"
## Please report any bug on akir4d@gmail.com
deb http://akirad.cinelerra.org/ akirad-hardy main
#deb-src http://akirad.cinelerra.org/ akirad-hardy main

## Wine
# gpg --keyserver subkeys.pgp.net --recv 387EE263
# gpg --export --armor 387EE263 | sudo apt-key add -
deb http://wine.budgetdedicated.com/apt hardy main #WineHQ - Ubuntu 8.04 "Hardy Heron"
#deb-src http://wine.budgetdedicated.com/apt hardy main #WineHQ - Ubuntu 8.04 "Hardy Heron"

## Gnome-Do
# sudo apt-get install gnome-do
# For addons: http://do.davebsd.com/addins/
# Place addons in ~/.do/addins and restart Gnome-Do
#
deb http://ppa.launchpad.net/rharding/ubuntu hardy main
deb-src http://ppa.launchpad.net/rharding/ubuntu hardy main

## Swiftfox
deb http://getswiftfox.com/builds/debian unstable non-free

## aMule
# gpg --keyserver wwwkeys.eu.pgp.net --recv 50D0AE60
# gpg --armor --export 50D0AE60 | sudo apt-key add -
#
# deb http://www.vollstreckernet.de/debian/ testing amule

## Broadcom firmware, Google-earth, Secondlife, rTorrent, etc..
# wget http://debian.cafuego.net/cafuego.gpg -O- | sudo apt-key add -
#
deb http://au.ubuntu.cafuego.net hardy-cafuego all
deb-src http://au.ubuntu.cafuego.net hardy-cafuego all

## Miro
deb http://ftp.osuosl.org/pub/pculture.org/miro/linux/repositories/ubuntu hardy/

## Audacious
#deb http://backports.dereferenced.org/ hardy universe

## Elisa Media Center
# wget http://elisa.fluendo.com/packages/philn.asc -O- | sudo apt-key add -
#
#deb http://elisa.fluendo.com/packages hardy main

## Last.fm
# wget http://apt.last.fm/last.fm.repo.gpg -O- | sudo apt-key add -
#
deb http://apt.last.fm/ debian stable

## GShowTV
# gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 585DECB0
# gpg --armor --export 585DECB0 | sudo apt-key add -
deb http://debian.vakevainen.fi unstable main

## GreenOS
# wget http://www.thinkgos.com/files/gos_repo_key.asc -O- | sudo apt-key add -
#
#deb http://packages.thinkgos.com/gos/ painful main
#deb-src http://packages.thinkgos.com/gos/ painful main

## Griffith (film collection manager)
# gpg --keyserver subkeys.pgp.net --recv-keys ED75F599
# gpg --armor --export ED75F599 | sudo apt-key add -
#
deb ftp://ftp.berlios.de/pub/griffith/ ./

## KDE4
# First uninstall:
# sudo apt-get remove kdelibs5 kde4base-data kde4libs-data
#
# Packages needed:
# sudo apt-get install kde4-core kde-l10n-it
#
# Optional packages:
# sudo aptitude install kdegraphics-kde4  kdemultimedia-kde4  kdenetwork-kde4 kdeutils-kde4 extragear-plasma
#
deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu hardy main

## Mugshot
# wget -q http://www.nighton.net/nighton_key.asc -O- | sudo apt-key add - && sudo apt-get update
# sudo apt-get install mugshot
#
deb http://www.nighton.net/ hardy main
deb-src http://www.nighton.net/ hardy main

## Mundogeek Repository
# Packages list: http://mundogeek.net/repo/dists/ubuntu/all/
#
deb http://mundogeek.net/repo ubuntu all

## PyTube
deb http://www.bashterritory.com/pytube/releases /

## Ubuntu Tweak
deb http://ppa.launchpad.net/tualatrix/ubuntu hardy main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu hardy main

## Me TV
deb http://ppa.launchpad.net/michael-lamothe/ubuntu hardy main
deb-src http://ppa.launchpad.net/michael-lamothe/ubuntu hardy main

## Jbbr Repository
# wget -q http://ubuntu.jbbr.net/jbbr_ubuntu.asc -O- | sudo apt-key add -
#
deb http://ubuntu.jbbr.net/packages hardy main
deb-src http://ubuntu.jbbr.net/packages hardy main

##Pollyrepo - www.pollycoke.net
#
deb http://download.tuxfamily.org/pollyrepo hardy/
deb-src http://download.tuxfamily.org/pollyrepo hardy/

##TOR
# gpg --export 94C09C7F | sudo apt-key add -
deb http://mirror.noreply.org/pub/tor hardy main
deb-src http://mirror.noreply.org/pub/tor hardy main

## Skype
#
deb http://download.skype.com/linux/repos/debian/ stable non-free

## Logubuntu
## Offre diversi pacchetti, tra cui le ultime versioni di amule e amule-adunanza (dichiarato ancora come unstable)
# gpg --keyserver subkeys.pgp.net --recv-keys 2674E3FC
# gpg --armor --export 2674E3FC| sudo apt-key add -
#
# deb http://www.logubuntu.it/M0rF3uS hardy-unstable/
# deb-src http://www.logubuntu.it/M0rF3uS hardy-unstable/
deb http://www.logubuntu.it/M0rF3uS/ hardy binary

## Google Linux software repository (GPG key: 7FAC5991)
## Offre pacchetti della suite Google.
deb http://dl.google.com/linux/deb/ stable non-free

## Enlightenment DR17 (GPG key: A7C6F0DF)
## Offre  i pacchetti per installare Enlightenment DR17 e per Elbuntu.
deb http://e17.dunnewind.net/ubuntu/ hardy e17 elbuntu
deb-src http://e17.dunnewind.net/ubuntu/ hardy e17 elbuntu


## Ubuntu hardy University Klagenfurt (GPG key: A2BF7BCB)
## Pacchetti forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy main universe multiverse restricted

## Ubuntu hardy University Klagenfurt updates (GPG key: A2BF7BCB)
## Pacchetti aggiornati forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-updates main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-updates main universe multiverse restricted

## Ubuntu hardy University Klagenfurt backports (GPG key: A2BF7BCB)
## Pacchetti di backports forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-backports main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-backports main universe multiverse restricted

## Ubuntu hardy University Klagenfurt security fixes (GPG key: A2BF7BCB)
## Pacchetti con aggiornameti di sicurezza forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-security main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-security main universe multiverse restricted

## Morghot (GPG key: 7E2E4741)
## Offre pacchetti di packport non ufficiali
deb http://morgoth.free.fr/ubuntu hardy-backports main
deb-src http://morgoth.free.fr/ubuntu hardy-backports main

## Le dépomaniak (GPG key: 1D59E694)
## Offre i pacchetti per extract-xiso, qtpfsgui e radiocap.
##Attualmente non funzionanti
#deb http://ubuntu.davromaniak.eu hardy-depomaniak all
#deb-src http://ubuntu.davromaniak.eu hardy-depomaniak all

## Ryan Kavanagh's packages (GPG key: 02544D0E)
## Offre principalmente applicazioni per KDE.
#deb http://packages.ryanak.ca ryan-hardy all
#deb-src http://packages.ryanak.ca ryan-hardy all
 
Di Admin (del 03/06/2008 @ 14:44:44, in Howto, linkato 11714 volte)

Ciao a tutti,

vi é mai capitato di aver installato tante di quelle cose che non sapete più come liberare il telefono?Oppure il telefono fa le bizze e non capite il perchè?

La soluzione in molti casi é un bel deep reset!

Il deep reset può essere fatto in questi tre modi a seconda del vostro smartphone:

- *#7370#
- *#7780#
- accendi il cel pigiando contemporaneamente *+tasto verde+3 e il tasto di accensione fino alla schermata delle mani nokia
 

Spero di esser stato d'aiuto.

A presto

 
Di Admin (del 26/05/2008 @ 20:54:10, in Howto, linkato 14334 volte)

Allora partiamo dal kernel.Se avete una versione di kernel inforiore alla 2.6.5 (esclusa) avete bisogno di patcharlo con delle patch disponibili su www.prism54.org

(ricordatevi di abilitare i supporti pcmcia anche nella sezione periferiche altrimenti la vostra scheda potrebbe non essere vista). Io sul mio notebook uso Slackware con kernel 2.6.4 patchato.Fatto questo avete bisogno del pacchetto madwifi che trovate a questo link

http://prdownloads.sourceforge.net/madwifi/madwifi-20030802.tgz?download

Il pacchetto è un .tgz che su slackware potete installare con il comando "installpgk madwifi-20030802.tgz". A questo punto vi occorre uno script di configurazione,

ecco il mio basta che copiate e incollate su un file e gli date i permessi di esecuzione (chmod +x nomefile):

--------------------------------------------------

#!/bin/sh

#

iwpriv ath0 mode 3

iwconfig ath0 essid "any"

iwconfig ath0 mode Managed

iwconfig ath0 nickname "nomepc"

iwconfig ath0 key restricted CHIAVEWEP

ifconfig ath0 up ifconfig ath0 192.168.0.IP

route add default gw INDIRIZZO.IP.DEL.ROUTER

--------------------------------------------------

Lanciate questo script (oppurtunamente modificato per la vostra rete) e sarete connessi.

P.S.=Ancora i driver madwifi non consentono la connessione AdHoc (tra 2 schede wifi) ma solo agli access point.

 
Di Admin (del 26/05/2008 @ 20:51:53, in Howto, linkato 12634 volte)

Per prima cosa scaricare i sorgenti (che si trovano su emule o simili) per linux (vnc-3.3.7-x86_linux.tar.gz) e per windows (realvnc,tighvnc etc...).

A questo punto,pensando che la macchina linux sia senza monitor e che faccia da server, passiamo all'installazione:

una volta che il tuo sistema è installato e configurato copia il pacchetto in /usr/src e scompattalo,verrà creata una cartella.

Entra nella cartella e compila e installa( ./configure && make && make install ), ora non resta che lanciare il vncsever.

Consiglio di scegliere un window manager leggero (io ad es. uso windowmaker , lo potete cambiare con il comando xwmconfig)!!

Ok siamo pronti!Spegnete e togliete lo schermo alla macchina linux poi riaccendetela senza monitor (ricordatevi di disabilitare nel bios l''opzione sul controllo della tastiera al boot altrimenti il vostro pc non si avvierà).

Ok,entriamo dalla macchina windows con ssh sulla macchina linux (c'è un programma che si chiama PUTTY che fa al caso nostro) e,non da utente root,lanciamo "startx".

Ora apriamo un'altra connessione ssh verso la stessa macchina linux con il solito user (importante altrimenti vnc non funzionerà!!) e lanciate il seguente comando:

vncserver :1 -geometry 1024x768 -name nomeserver

il programma vi chiederà di impostare una password per l'accesso da remoto.

Ci siamo!

Aprite realvnc viewer e alla richiesta dell'host inserite iphost:1 , vi si aprirà una richesta password mettete la password che avete inserito sul vnc del server (macchina linux).

Adesso dovreste vedere il desktop della vostra macchina senza schermo.

 
Pagine: 1
Consigliamo il server per l'ora NTP -> ntp.ien.it

ir0nfl4m3

Calendario

< settembre 2010 >
L
M
M
G
V
S
D
  
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
     
             

Fotografie

Howto (1)

Le fotografie pił cliccate

Top 10 utenti del mese

Sondaggio

Quale sistema server utilizzate?

 Ubuntu server 8.04 LTS
 CentOS 5
 Wondows 2000 server
 Windows 2003 server
 Windows 2008 server

Stuff

Listening
Virgin Radio Italy

Varie

Ci sono 7 persone collegate

07/09/2010 @ 17.30.36
script eseguito in 172 ms