Pagina 1 di 2
[RISOLTO]Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 16:32
da $nake
Vorrei eliminare tutti i file che riguardano questi driver che ho installato da poco con wine...
Solo che non trovo l'unistall,ma oltre questo vorrei imparare a cancellare file anche da terminale,inteso come cancellare tutti i file che riguardano un argomento,del tipo eliminare tutti i file che hanno la dicitura REALTEK...
Vi posto il locate...
Codice: Seleziona tutto
snake@snake-pc:~/.wine$ locate REALTEK
/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK 11n USB Wireless LAN Utility-REALTEK 11n USB Wireless LAN Utility.menu
/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK 11n USB Wireless LAN Utility-Uninstall.menu
/home/snake/.local/share/desktop-directories/wine-Programmi-REALTEK 11n USB Wireless LAN Utility.directory
/home/snake/.local/share/icons/hicolor/16x16/apps/E116_REALTEK 11n USB Wireless LAN Driver and Utility.0.png
/home/snake/.local/share/icons/hicolor/32x32/apps/E116_REALTEK 11n USB Wireless LAN Driver and Utility.0.png
/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility
/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/Esecuzione automatica/REALTEK 11n USB Wireless LAN Utility.lnk
/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility/REALTEK 11n USB Wireless LAN Utility.lnk
/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility/Uninstall.lnk
/home/snake/Scrivania/REALTEK 11n USB Wireless LAN Utility.desktop
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 16:55
da Laycastle
"
`" è un apice inverso si ottiene premendo
alt gr+'.
In pratica il comando al interno degli apici viene espanso e il suo output viene quindi usato da
rm.
Una scrittura equivalente è
Aggiungere l'opzione
-i a
rm, così da essere interrogati prima della rimozione del file, potrebbe essere una cosa saggia, ma seccante, soprattutto quando si tratta di rimuovere cartelle.
Un altro modo è usare find, flessibilissimo. Quando pensi "su tutti i file che hanno questa caratteristica fai quest'altro" probabilmente find è la risposta. Nel nostro caso
spiegazione:
/home è la cartella da cui partire a cercare i file
-name "*REALTEK*" è la nostra condizione, ovvero che contengano REALTEK nel nome.
-exec invece esegue il comando ogni volta che trova un file.
{} viene sostituito dal percorso al file,
\; serve per dirgli che il comando è finito.
Volendo, come prima, potresti aggiungere l'opzione
-i a
rm. Quindi:
Il bello di find e che supporta moltissime condizioni e ti permette di selezionare i file che ti servono, ad esempio potresti aggiungere l'opzione
-type f per agire solo sui file regolari oppure
-type d per agire solo sulle cartelle.
Nel man di find puoi trovare tutto quello che ti serve: opzioni di ricerca (es. non prendere i file di questa sottocartella), di selezione dei file (es. file modificato da meno di tre giorni) e azioni.
Ciao.

Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 17:29
da $nake
Laycastle ha scritto:
"
`" è un apice inverso si ottiene premendo
alt gr+'.
In pratica il comando al interno degli apici viene espanso e il suo output viene quindi usato da
rm.
Una scrittura equivalente è
Aggiungere l'opzione
-i a
rm, così da essere interrogati prima della rimozione del file, potrebbe essere una cosa saggia, ma seccante, soprattutto quando si tratta di rimuovere cartelle.
Un altro modo è usare find, flessibilissimo. Quando pensi "su tutti i file che hanno questa caratteristica fai quest'altro" probabilmente find è la risposta. Nel nostro caso
spiegazione:
/home è la cartella da cui partire a cercare i file
-name "*REALTEK*" è la nostra condizione, ovvero che contengano REALTEK nel nome.
-exec invece esegue il comando ogni volta che trova un file.
{} viene sostituito dal percorso al file,
\; serve per dirgli che il comando è finito.
Volendo, come prima, potresti aggiungere l'opzione
-i a
rm. Quindi:
Il bello di find e che supporta moltissime condizioni e ti permette di selezionare i file che ti servono, ad esempio potresti aggiungere l'opzione
-type f per agire solo sui file regolari oppure
-type d per agire solo sulle cartelle.
Nel man di find puoi trovare tutto quello che ti serve: opzioni di ricerca (es. non prendere i file di questa sottocartella), di selezione dei file (es. file modificato da meno di tre giorni) e azioni.
Ciao.
Anche se sei stato chiarissimo non credo di aver capito esattamente tutto,credo che debbo applicarmi a testare sperando di non fare danni!
Ora riguardo a find ti spiego perchè non lo uso,se creo o scarico un file in questo esatto momento e lo metto in qualsiasi cartella del computer basta che faccio sudo updatedb per aggiornare il comando locate in modo che venga trovato istantaneamente,differentemente da find,se invece con find provo a cercare il nuovo file non lo trova,probabile che devo aggiungere altro o semplicemente c'è un updatedb anche per find,ma io non lo conosco,se potresti dirmi anche come aggiornare find per trovare i dati in tutto il pc senza problemi come con locate te ne sarei grato...
Ps grazie mille mi appunto tutto la miniguida!

Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 17:44
da Laycastle
Anche se sei stato chiarissimo non credo di aver capito esattamente tutto
È normale, ti ho dato un sacco di informazioni tutte in una volta.

Poi certe cose sono più facili da fare che da spiegare.
Ora riguardo a find ti spiego perchè non lo uso,se creo o scarico un file in questo esatto momento e lo metto in qualsiasi cartella del computer basta che faccio sudo updatedb per aggiornare il comando locate in modo che venga trovato istantaneamente,differentemente da find,se invece con find provo a cercare il nuovo file non lo trova,probabile che devo aggiungere altro o semplicemente c'è un updatedb anche per find,ma io non lo conosco,se potresti dirmi anche come aggiornare find per trovare i dati in tutto il pc senza problemi come con locate te ne sarei grato...
Allora find non legge i file da un database, ma li cerca sul momento. Probabilmente non te li trova perché commetti un errore molto comune:
Codice: Seleziona tutto
laycastle /media/dati/local/develop/pratica $ touch {,1,2}pippo{,1,2}
laycastle /media/dati/local/develop/test $ find . -name "pippo"
./pippo
laycastle /media/dati/local/develop/test $ find . -name "*pippo*"
./2pippo2
./1pippo
./1pippo2
./pippo1
./2pippo1
./2pippo
./pippo2
./pippo
./1pippo1
find vuole che gli specifichi il nome completo, diversamente da locate che cerca la stringa nel nome. Se vuoi indicargli solo una parte del nome devi dirgli che ci può essere qualcosa prima e dopo con gli asterischi.

Ah, se vuoi che la ricerca non sia case sensitive puoi usare
-iname.

Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 18:43
da $nake
Laycastle ha scritto:
Anche se sei stato chiarissimo non credo di aver capito esattamente tutto
È normale, ti ho dato un sacco di informazioni tutte in una volta.

Poi certe cose sono più facili da fare che da spiegare.
Ora riguardo a find ti spiego perchè non lo uso,se creo o scarico un file in questo esatto momento e lo metto in qualsiasi cartella del computer basta che faccio sudo updatedb per aggiornare il comando locate in modo che venga trovato istantaneamente,differentemente da find,se invece con find provo a cercare il nuovo file non lo trova,probabile che devo aggiungere altro o semplicemente c'è un updatedb anche per find,ma io non lo conosco,se potresti dirmi anche come aggiornare find per trovare i dati in tutto il pc senza problemi come con locate te ne sarei grato...
Allora find non legge i file da un database, ma li cerca sul momento. Probabilmente non te li trova perché commetti un errore molto comune:
Codice: Seleziona tutto
laycastle /media/dati/local/develop/pratica $ touch {,1,2}pippo{,1,2}
laycastle /media/dati/local/develop/test $ find . -name "pippo"
./pippo
laycastle /media/dati/local/develop/test $ find . -name "*pippo*"
./2pippo2
./1pippo
./1pippo2
./pippo1
./2pippo1
./2pippo
./pippo2
./pippo
./1pippo1
find vuole che gli specifichi il nome completo, diversamente da locate che cerca la stringa nel nome. Se vuoi indicargli solo una parte del nome devi dirgli che ci può essere qualcosa prima e dopo con gli asterischi.

Ah, se vuoi che la ricerca non sia case sensitive puoi usare
-iname.
Boh,qualcosa non quadra,ero sulla scrivania ed ho creato un file nella home,ho cercato e non ha trovato nulla,il file era di nome acquario senza nessuna estensione...
Codice: Seleziona tutto
snake@snake-pc:~/Scrivania$ find . -name acquario
snake@snake-pc:~/Scrivania$ find . -name "acquario"
snake@snake-pc:~/Scrivania$
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 18:49
da Laycastle
Hum... prova ad aggiungere l'azione "print"
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 19:07
da $nake
Laycastle ha scritto:
Hum... prova ad aggiungere l'azione "print"
Nada...
Codice: Seleziona tutto
snake@snake-pc:~/Scrivania$ find . -name "acquario" -print
snake@snake-pc:~/Scrivania$
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 19:14
da Laycastle
Ma sei sicuro di essere nella stessa cartella del file?
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 19:29
da $nake
Laycastle ha scritto:
Ma sei sicuro di essere nella stessa cartella del file?
Ecco,allora no mi sa che ci siamo capiti male,ecco perchè mi trovo megllio con locate,semplicemente perchè m trova i file in pochi istanti in tutte le cartelle del pc,a differenza di find,questo intendevo prima...
Anche perchè se non ricordo dove ho messo un file solo con locate lo posso trovare..
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 19:37
da Laycastle
Ah si, per quello è senza dubbio meglio locate, che è anche molto più veloce. Find serve se vuoi fare cose più avanzate.
Anche perchè se non ricordo dove ho messo un file solo con locate lo posso trovare..
Mica vero, basta dirgli di iniziare a cercare dalla root ("/").

Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 20:34
da $nake
Laycastle ha scritto:
Ah si, per quello è senza dubbio meglio locate, che è anche molto più veloce. Find serve se vuoi fare cose più avanzate.
Anche perchè se non ricordo dove ho messo un file solo con locate lo posso trovare..
Mica vero, basta dirgli di iniziare a cercare dalla root ("/").
Potresti farmi un esempio di un file che cerchi in root ma dalla scrivania?
del tipo per il file acquario.
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 20:49
da Laycastle
Codice: Seleziona tutto
laycastle ~ $ touch ajeje
laycastle ~ $ cd local/
laycastle ~/local $ find / -name "ajeje" 2> /dev/null
/home/laycastle/ajeje
2> /dev/null l'ho aggiunto giusto per farti confondere ancora un po'.

No, a parte gli scherzi, siccome find non cerca in un database generato come root, ma cerca sul momento, quando lo lanci come utente per ogni cartella/file non leggibile dal tuo utente stampa un errore.
2>/dev/null serve proprio a redirigere gli errori su /dev/null (che puoi pensare un po' come un cestino del sistema, o meglio ancora un buco nero che inghiotte e fa sparire tutto quello che ci metti dentro).
Ecco quello che avrebbe stampato senza
Codice: Seleziona tutto
laycastle ~/local $ find / -name "ajeje"
find: `/run/udisks': Permesso negato
find: `/usr/portage/distfiles/svn-src/.subversion/auth': Permesso negato
find: `/media/dati/lost+found': Permesso negato
find: `/lost+found': Permesso negato
find: `/proc/tty/driver': Permesso negato
find: `/proc/1/task/1/fd': Permesso negato
find: `/proc/1/task/1/fdinfo': Permesso negato
find: `/proc/1/task/1/ns': Permesso negato
find: `/proc/1/fd': Permesso negato
find: `/proc/1/fdinfo': Permesso negato
find: `/proc/1/ns': Permesso negato
find: `/proc/2/task/2/fd': Permesso negato
find: `/proc/2/task/2/fdinfo': Permesso negato
find: `/proc/2/task/2/ns': Permesso negato
find: `/proc/2/fd': Permesso negato
find: `/proc/2/fdinfo': Permesso negato
find: `/proc/2/ns': Permesso negato
find: `/proc/3/task/3/fd': Permesso negato
find: `/proc/3/task/3/fdinfo': Permesso negato
find: `/proc/3/task/3/ns': Permesso negato
find: `/proc/3/fd': Permesso negato
find: `/proc/3/fdinfo': Permesso negato
find: `/proc/3/ns': Permesso negato
find: `/proc/6/task/6/fd': Permesso negato
find: `/proc/6/task/6/fdinfo': Permesso negato
find: `/proc/6/task/6/ns': Permesso negato
find: `/proc/6/fd': Permesso negato
find: `/proc/6/fdinfo': Permesso negato
find: `/proc/6/ns': Permesso negato
find: `/proc/7/task/7/fd': Permesso negato
find: `/proc/7/task/7/fdinfo': Permesso negato
find: `/proc/7/task/7/ns': Permesso negato
find: `/proc/7/fd': Permesso negato
find: `/proc/7/fdinfo': Permesso negato
find: `/proc/7/ns': Permesso negato
find: `/proc/8/task/8/fd': Permesso negato
find: `/proc/8/task/8/fdinfo': Permesso negato
find: `/proc/8/task/8/ns': Permesso negato
find: `/proc/8/fd': Permesso negato
find: `/proc/8/fdinfo': Permesso negato
find: `/proc/8/ns': Permesso negato
find: `/proc/9/task/9/fd': Permesso negato
find: `/proc/9/task/9/fdinfo': Permesso negato
find: `/proc/9/task/9/ns': Permesso negato
find: `/proc/9/fd': Permesso negato
find: `/proc/9/fdinfo': Permesso negato
find: `/proc/9/ns': Permesso negato
find: `/proc/11/task/11/fd': Permesso negato
find: `/proc/11/task/11/fdinfo': Permesso negato
find: `/proc/11/task/11/ns': Permesso negato
find: `/proc/11/fd': Permesso negato
find: `/proc/11/fdinfo': Permesso negato
find: `/proc/11/ns': Permesso negato
find: `/proc/13/task/13/fd': Permesso negato
find: `/proc/13/task/13/fdinfo': Permesso negato
find: `/proc/13/task/13/ns': Permesso negato
find: `/proc/13/fd': Permesso negato
find: `/proc/13/fdinfo': Permesso negato
find: `/proc/13/ns': Permesso negato
find: `/proc/14/task/14/fd': Permesso negato
find: `/proc/14/task/14/fdinfo': Permesso negato
find: `/proc/14/task/14/ns': Permesso negato
find: `/proc/14/fd': Permesso negato
find: `/proc/14/fdinfo': Permesso negato
find: `/proc/14/ns': Permesso negato
find: `/proc/16/task/16/fd': Permesso negato
find: `/proc/16/task/16/fdinfo': Permesso negato
find: `/proc/16/task/16/ns': Permesso negato
find: `/proc/16/fd': Permesso negato
find: `/proc/16/fdinfo': Permesso negato
find: `/proc/16/ns': Permesso negato
find: `/proc/17/task/17/fd': Permesso negato
find: `/proc/17/task/17/fdinfo': Permesso negato
find: `/proc/17/task/17/ns': Permesso negato
find: `/proc/17/fd': Permesso negato
find: `/proc/17/fdinfo': Permesso negato
find: `/proc/17/ns': Permesso negato
find: `/proc/19/task/19/fd': Permesso negato
find: `/proc/19/task/19/fdinfo': Permesso negato
find: `/proc/19/task/19/ns': Permesso negato
find: `/proc/19/fd': Permesso negato
find: `/proc/19/fdinfo': Permesso negato
find: `/proc/19/ns': Permesso negato
find: `/proc/20/task/20/fd': Permesso negato
find: `/proc/20/task/20/fdinfo': Permesso negato
find: `/proc/20/task/20/ns': Permesso negato
find: `/proc/20/fd': Permesso negato
find: `/proc/20/fdinfo': Permesso negato
find: `/proc/20/ns': Permesso negato
find: `/proc/22/task/22/fd': Permesso negato
find: `/proc/22/task/22/fdinfo': Permesso negato
find: `/proc/22/task/22/ns': Permesso negato
find: `/proc/22/fd': Permesso negato
find: `/proc/22/fdinfo': Permesso negato
find: `/proc/22/ns': Permesso negato
find: `/proc/23/task/23/fd': Permesso negato
find: `/proc/23/task/23/fdinfo': Permesso negato
find: `/proc/23/task/23/ns': Permesso negato
find: `/proc/23/fd': Permesso negato
find: `/proc/23/fdinfo': Permesso negato
find: `/proc/23/ns': Permesso negato
find: `/proc/25/task/25/fd': Permesso negato
find: `/proc/25/task/25/fdinfo': Permesso negato
find: `/proc/25/task/25/ns': Permesso negato
find: `/proc/25/fd': Permesso negato
find: `/proc/25/fdinfo': Permesso negato
find: `/proc/25/ns': Permesso negato
find: `/proc/26/task/26/fd': Permesso negato
find: `/proc/26/task/26/fdinfo': Permesso negato
find: `/proc/26/task/26/ns': Permesso negato
find: `/proc/26/fd': Permesso negato
find: `/proc/26/fdinfo': Permesso negato
find: `/proc/26/ns': Permesso negato
find: `/proc/27/task/27/fd': Permesso negato
find: `/proc/27/task/27/fdinfo': Permesso negato
find: `/proc/27/task/27/ns': Permesso negato
find: `/proc/27/fd': Permesso negato
find: `/proc/27/fdinfo': Permesso negato
find: `/proc/27/ns': Permesso negato
find: `/proc/28/task/28/fd': Permesso negato
find: `/proc/28/task/28/fdinfo': Permesso negato
find: `/proc/28/task/28/ns': Permesso negato
find: `/proc/28/fd': Permesso negato
find: `/proc/28/fdinfo': Permesso negato
find: `/proc/28/ns': Permesso negato
find: `/proc/29/task/29/fd': Permesso negato
find: `/proc/29/task/29/fdinfo': Permesso negato
find: `/proc/29/task/29/ns': Permesso negato
find: `/proc/29/fd': Permesso negato
find: `/proc/29/fdinfo': Permesso negato
find: `/proc/29/ns': Permesso negato
find: `/proc/30/task/30/fd': Permesso negato
find: `/proc/30/task/30/fdinfo': Permesso negato
find: `/proc/30/task/30/ns': Permesso negato
find: `/proc/30/fd': Permesso negato
find: `/proc/30/fdinfo': Permesso negato
find: `/proc/30/ns': Permesso negato
find: `/proc/31/task/31/fd': Permesso negato
find: `/proc/31/task/31/fdinfo': Permesso negato
find: `/proc/31/task/31/ns': Permesso negato
find: `/proc/31/fd': Permesso negato
find: `/proc/31/fdinfo': Permesso negato
find: `/proc/31/ns': Permesso negato
find: `/proc/32/task/32/fd': Permesso negato
find: `/proc/32/task/32/fdinfo': Permesso negato
find: `/proc/32/task/32/ns': Permesso negato
find: `/proc/32/fd': Permesso negato
find: `/proc/32/fdinfo': Permesso negato
find: `/proc/32/ns': Permesso negato
find: `/proc/33/task/33/fd': Permesso negato
find: `/proc/33/task/33/fdinfo': Permesso negato
find: `/proc/33/task/33/ns': Permesso negato
find: `/proc/33/fd': Permesso negato
find: `/proc/33/fdinfo': Permesso negato
find: `/proc/33/ns': Permesso negato
find: `/proc/316/task/316/fd': Permesso negato
find: `/proc/316/task/316/fdinfo': Permesso negato
find: `/proc/316/task/316/ns': Permesso negato
find: `/proc/316/fd': Permesso negato
find: `/proc/316/fdinfo': Permesso negato
find: `/proc/316/ns': Permesso negato
find: `/proc/318/task/318/fd': Permesso negato
find: `/proc/318/task/318/fdinfo': Permesso negato
find: `/proc/318/task/318/ns': Permesso negato
find: `/proc/318/fd': Permesso negato
find: `/proc/318/fdinfo': Permesso negato
find: `/proc/318/ns': Permesso negato
find: `/proc/320/task/320/fd': Permesso negato
find: `/proc/320/task/320/fdinfo': Permesso negato
find: `/proc/320/task/320/ns': Permesso negato
find: `/proc/320/fd': Permesso negato
find: `/proc/320/fdinfo': Permesso negato
find: `/proc/320/ns': Permesso negato
find: `/proc/453/task/453/fd': Permesso negato
find: `/proc/453/task/453/fdinfo': Permesso negato
find: `/proc/453/task/453/ns': Permesso negato
find: `/proc/453/fd': Permesso negato
find: `/proc/453/fdinfo': Permesso negato
find: `/proc/453/ns': Permesso negato
find: `/proc/464/task/464/fd': Permesso negato
find: `/proc/464/task/464/fdinfo': Permesso negato
find: `/proc/464/task/464/ns': Permesso negato
find: `/proc/464/fd': Permesso negato
find: `/proc/464/fdinfo': Permesso negato
find: `/proc/464/ns': Permesso negato
find: `/proc/495/task/495/fd': Permesso negato
find: `/proc/495/task/495/fdinfo': Permesso negato
find: `/proc/495/task/495/ns': Permesso negato
find: `/proc/495/fd': Permesso negato
find: `/proc/495/fdinfo': Permesso negato
find: `/proc/495/ns': Permesso negato
find: `/proc/596/task/596/fd': Permesso negato
find: `/proc/596/task/596/fdinfo': Permesso negato
find: `/proc/596/task/596/ns': Permesso negato
find: `/proc/596/fd': Permesso negato
find: `/proc/596/fdinfo': Permesso negato
find: `/proc/596/ns': Permesso negato
find: `/proc/678/task/678/fd': Permesso negato
find: `/proc/678/task/678/fdinfo': Permesso negato
find: `/proc/678/task/678/ns': Permesso negato
find: `/proc/678/fd': Permesso negato
find: `/proc/678/fdinfo': Permesso negato
find: `/proc/678/ns': Permesso negato
find: `/proc/679/task/679/fd': Permesso negato
find: `/proc/679/task/679/fdinfo': Permesso negato
find: `/proc/679/task/679/ns': Permesso negato
find: `/proc/679/fd': Permesso negato
find: `/proc/679/fdinfo': Permesso negato
find: `/proc/679/ns': Permesso negato
find: `/proc/748/task/748/fd': Permesso negato
find: `/proc/748/task/748/fdinfo': Permesso negato
find: `/proc/748/task/748/ns': Permesso negato
find: `/proc/748/fd': Permesso negato
find: `/proc/748/fdinfo': Permesso negato
find: `/proc/748/ns': Permesso negato
find: `/proc/764/task/764/fd': Permesso negato
find: `/proc/764/task/764/fdinfo': Permesso negato
find: `/proc/764/task/764/ns': Permesso negato
find: `/proc/764/fd': Permesso negato
find: `/proc/764/fdinfo': Permesso negato
find: `/proc/764/ns': Permesso negato
find: `/proc/814/task/814/fd': Permesso negato
find: `/proc/814/task/814/fdinfo': Permesso negato
find: `/proc/814/task/814/ns': Permesso negato
find: `/proc/814/fd': Permesso negato
find: `/proc/814/fdinfo': Permesso negato
find: `/proc/814/ns': Permesso negato
find: `/proc/820/task/820/fd': Permesso negato
find: `/proc/820/task/820/fdinfo': Permesso negato
find: `/proc/820/task/820/ns': Permesso negato
find: `/proc/820/fd': Permesso negato
find: `/proc/820/fdinfo': Permesso negato
find: `/proc/820/ns': Permesso negato
find: `/proc/908/task/908/fd': Permesso negato
find: `/proc/908/task/908/fdinfo': Permesso negato
find: `/proc/908/task/908/ns': Permesso negato
find: `/proc/908/fd': Permesso negato
find: `/proc/908/fdinfo': Permesso negato
find: `/proc/908/ns': Permesso negato
find: `/proc/911/task/911/fd': Permesso negato
find: `/proc/911/task/911/fdinfo': Permesso negato
find: `/proc/911/task/911/ns': Permesso negato
find: `/proc/911/fd': Permesso negato
find: `/proc/911/fdinfo': Permesso negato
find: `/proc/911/ns': Permesso negato
find: `/proc/914/task/914/fd': Permesso negato
find: `/proc/914/task/914/fdinfo': Permesso negato
find: `/proc/914/task/914/ns': Permesso negato
find: `/proc/914/fd': Permesso negato
find: `/proc/914/fdinfo': Permesso negato
find: `/proc/914/ns': Permesso negato
find: `/proc/915/task/915/fd': Permesso negato
find: `/proc/915/task/915/fdinfo': Permesso negato
find: `/proc/915/task/915/ns': Permesso negato
find: `/proc/915/fd': Permesso negato
find: `/proc/915/fdinfo': Permesso negato
find: `/proc/915/ns': Permesso negato
find: `/proc/922/task/922/fd': Permesso negato
find: `/proc/922/task/922/fdinfo': Permesso negato
find: `/proc/922/task/922/ns': Permesso negato
find: `/proc/922/fd': Permesso negato
find: `/proc/922/fdinfo': Permesso negato
find: `/proc/922/ns': Permesso negato
find: `/proc/925/task/925/fd': Permesso negato
find: `/proc/925/task/925/fdinfo': Permesso negato
find: `/proc/925/task/925/ns': Permesso negato
find: `/proc/925/fd': Permesso negato
find: `/proc/925/fdinfo': Permesso negato
find: `/proc/925/ns': Permesso negato
find: `/proc/963/task/963/fd': Permesso negato
find: `/proc/963/task/963/fdinfo': Permesso negato
find: `/proc/963/task/963/ns': Permesso negato
find: `/proc/963/fd': Permesso negato
find: `/proc/963/fdinfo': Permesso negato
find: `/proc/963/ns': Permesso negato
find: `/proc/1095/task/1095/fd': Permesso negato
find: `/proc/1095/task/1095/fdinfo': Permesso negato
find: `/proc/1095/task/1095/ns': Permesso negato
find: `/proc/1095/fd': Permesso negato
find: `/proc/1095/fdinfo': Permesso negato
find: `/proc/1095/ns': Permesso negato
find: `/proc/1107/task/1107/fd': Permesso negato
find: `/proc/1107/task/1107/fdinfo': Permesso negato
find: `/proc/1107/task/1107/ns': Permesso negato
find: `/proc/1107/fd': Permesso negato
find: `/proc/1107/fdinfo': Permesso negato
find: `/proc/1107/ns': Permesso negato
find: `/proc/1108/task/1108/fd': Permesso negato
find: `/proc/1108/task/1108/fdinfo': Permesso negato
find: `/proc/1108/task/1108/ns': Permesso negato
find: `/proc/1108/fd': Permesso negato
find: `/proc/1108/fdinfo': Permesso negato
find: `/proc/1108/ns': Permesso negato
find: `/proc/1194/task/1194/fd': Permesso negato
find: `/proc/1194/task/1194/fdinfo': Permesso negato
find: `/proc/1194/task/1194/ns': Permesso negato
find: `/proc/1194/fd': Permesso negato
find: `/proc/1194/fdinfo': Permesso negato
find: `/proc/1194/ns': Permesso negato
find: `/proc/1195/task/1195/fd': Permesso negato
find: `/proc/1195/task/1195/fdinfo': Permesso negato
find: `/proc/1195/task/1195/ns': Permesso negato
find: `/proc/1195/fd': Permesso negato
find: `/proc/1195/fdinfo': Permesso negato
find: `/proc/1195/ns': Permesso negato
find: `/proc/1228/task/1228/fd': Permesso negato
find: `/proc/1228/task/1228/fdinfo': Permesso negato
find: `/proc/1228/task/1228/ns': Permesso negato
find: `/proc/1228/fd': Permesso negato
find: `/proc/1228/fdinfo': Permesso negato
find: `/proc/1228/ns': Permesso negato
find: `/proc/1229/task/1229/fd': Permesso negato
find: `/proc/1229/task/1229/fdinfo': Permesso negato
find: `/proc/1229/task/1229/ns': Permesso negato
find: `/proc/1229/fd': Permesso negato
find: `/proc/1229/fdinfo': Permesso negato
find: `/proc/1229/ns': Permesso negato
find: `/proc/1407/task/1407/fd': Permesso negato
find: `/proc/1407/task/1407/fdinfo': Permesso negato
find: `/proc/1407/task/1407/ns': Permesso negato
find: `/proc/1407/fd': Permesso negato
find: `/proc/1407/fdinfo': Permesso negato
find: `/proc/1407/ns': Permesso negato
find: `/proc/2016/task/2016/fd': Permesso negato
find: `/proc/2016/task/2016/fdinfo': Permesso negato
find: `/proc/2016/task/2016/ns': Permesso negato
find: `/proc/2016/fd': Permesso negato
find: `/proc/2016/fdinfo': Permesso negato
find: `/proc/2016/ns': Permesso negato
find: `/proc/2095/task/2095/fd': Permesso negato
find: `/proc/2095/task/2095/fdinfo': Permesso negato
find: `/proc/2095/task/2095/ns': Permesso negato
find: `/proc/2095/fd': Permesso negato
find: `/proc/2095/fdinfo': Permesso negato
find: `/proc/2095/ns': Permesso negato
find: `/proc/2096/task/2096/fd': Permesso negato
find: `/proc/2096/task/2096/fdinfo': Permesso negato
find: `/proc/2096/task/2096/ns': Permesso negato
find: `/proc/2096/fd': Permesso negato
find: `/proc/2096/fdinfo': Permesso negato
find: `/proc/2096/ns': Permesso negato
find: `/proc/2105/task/2105/fd': Permesso negato
find: `/proc/2105/task/2105/fdinfo': Permesso negato
find: `/proc/2105/task/2105/ns': Permesso negato
find: `/proc/2105/fd': Permesso negato
find: `/proc/2105/fdinfo': Permesso negato
find: `/proc/2105/ns': Permesso negato
find: `/proc/2107/task/2107/fd': Permesso negato
find: `/proc/2107/task/2107/fdinfo': Permesso negato
find: `/proc/2107/task/2107/ns': Permesso negato
find: `/proc/2107/fd': Permesso negato
find: `/proc/2107/fdinfo': Permesso negato
find: `/proc/2107/ns': Permesso negato
find: `/proc/2108/task/2108/fd': Permesso negato
find: `/proc/2108/task/2108/fdinfo': Permesso negato
find: `/proc/2108/task/2108/ns': Permesso negato
find: `/proc/2108/fd': Permesso negato
find: `/proc/2108/fdinfo': Permesso negato
find: `/proc/2108/ns': Permesso negato
find: `/proc/2109/task/2109/fd': Permesso negato
find: `/proc/2109/task/2109/fdinfo': Permesso negato
find: `/proc/2109/task/2109/ns': Permesso negato
find: `/proc/2109/fd': Permesso negato
find: `/proc/2109/fdinfo': Permesso negato
find: `/proc/2109/ns': Permesso negato
find: `/proc/2112/task/2112/fd': Permesso negato
find: `/proc/2112/task/2112/fdinfo': Permesso negato
find: `/proc/2112/task/2112/ns': Permesso negato
find: `/proc/2112/fd': Permesso negato
find: `/proc/2112/fdinfo': Permesso negato
find: `/proc/2112/ns': Permesso negato
find: `/proc/2118/task/2118/fd': Permesso negato
find: `/proc/2118/task/2118/fdinfo': Permesso negato
find: `/proc/2118/task/2118/ns': Permesso negato
find: `/proc/2118/fd': Permesso negato
find: `/proc/2118/fdinfo': Permesso negato
find: `/proc/2118/ns': Permesso negato
find: `/proc/2119/task/2119/fd': Permesso negato
find: `/proc/2119/task/2119/fdinfo': Permesso negato
find: `/proc/2119/task/2119/ns': Permesso negato
find: `/proc/2119/fd': Permesso negato
find: `/proc/2119/fdinfo': Permesso negato
find: `/proc/2119/ns': Permesso negato
find: `/proc/2122/task/2122/fd': Permesso negato
find: `/proc/2122/task/2122/fdinfo': Permesso negato
find: `/proc/2122/task/2122/ns': Permesso negato
find: `/proc/2122/fd': Permesso negato
find: `/proc/2122/fdinfo': Permesso negato
find: `/proc/2122/ns': Permesso negato
find: `/proc/2127/task/2127/fd': Permesso negato
find: `/proc/2127/task/2127/fdinfo': Permesso negato
find: `/proc/2127/task/2127/ns': Permesso negato
find: `/proc/2127/fd': Permesso negato
find: `/proc/2127/fdinfo': Permesso negato
find: `/proc/2127/ns': Permesso negato
find: `/proc/2178/task/2178/fd': Permesso negato
find: `/proc/2178/task/2178/fdinfo': Permesso negato
find: `/proc/2178/task/2178/ns': Permesso negato
find: `/proc/2178/fd': Permesso negato
find: `/proc/2178/fdinfo': Permesso negato
find: `/proc/2178/ns': Permesso negato
find: `/proc/2206/task/2206/fd': Permesso negato
find: `/proc/2206/task/2206/fdinfo': Permesso negato
find: `/proc/2206/task/2206/ns': Permesso negato
find: `/proc/2206/task/2207/fd': Permesso negato
find: `/proc/2206/task/2207/fdinfo': Permesso negato
find: `/proc/2206/task/2207/ns': Permesso negato
find: `/proc/2206/task/2208/fd': Permesso negato
find: `/proc/2206/task/2208/fdinfo': Permesso negato
find: `/proc/2206/task/2208/ns': Permesso negato
find: `/proc/2206/task/2209/fd': Permesso negato
find: `/proc/2206/task/2209/fdinfo': Permesso negato
find: `/proc/2206/task/2209/ns': Permesso negato
find: `/proc/2206/task/2210/fd': Permesso negato
find: `/proc/2206/task/2210/fdinfo': Permesso negato
find: `/proc/2206/task/2210/ns': Permesso negato
find: `/proc/2206/task/2211/fd': Permesso negato
find: `/proc/2206/task/2211/fdinfo': Permesso negato
find: `/proc/2206/task/2211/ns': Permesso negato
find: `/proc/2206/task/2212/fd': Permesso negato
find: `/proc/2206/task/2212/fdinfo': Permesso negato
find: `/proc/2206/task/2212/ns': Permesso negato
find: `/proc/2206/task/2213/fd': Permesso negato
find: `/proc/2206/task/2213/fdinfo': Permesso negato
find: `/proc/2206/task/2213/ns': Permesso negato
find: `/proc/2206/task/2214/fd': Permesso negato
find: `/proc/2206/task/2214/fdinfo': Permesso negato
find: `/proc/2206/task/2214/ns': Permesso negato
find: `/proc/2206/task/2215/fd': Permesso negato
find: `/proc/2206/task/2215/fdinfo': Permesso negato
find: `/proc/2206/task/2215/ns': Permesso negato
find: `/proc/2206/task/2216/fd': Permesso negato
find: `/proc/2206/task/2216/fdinfo': Permesso negato
find: `/proc/2206/task/2216/ns': Permesso negato
find: `/proc/2206/task/2217/fd': Permesso negato
find: `/proc/2206/task/2217/fdinfo': Permesso negato
find: `/proc/2206/task/2217/ns': Permesso negato
find: `/proc/2206/task/2218/fd': Permesso negato
find: `/proc/2206/task/2218/fdinfo': Permesso negato
find: `/proc/2206/task/2218/ns': Permesso negato
find: `/proc/2206/task/2219/fd': Permesso negato
find: `/proc/2206/task/2219/fdinfo': Permesso negato
find: `/proc/2206/task/2219/ns': Permesso negato
find: `/proc/2206/task/2220/fd': Permesso negato
find: `/proc/2206/task/2220/fdinfo': Permesso negato
find: `/proc/2206/task/2220/ns': Permesso negato
find: `/proc/2206/task/2221/fd': Permesso negato
find: `/proc/2206/task/2221/fdinfo': Permesso negato
find: `/proc/2206/task/2221/ns': Permesso negato
find: `/proc/2206/task/2222/fd': Permesso negato
find: `/proc/2206/task/2222/fdinfo': Permesso negato
find: `/proc/2206/task/2222/ns': Permesso negato
find: `/proc/2206/task/2223/fd': Permesso negato
find: `/proc/2206/task/2223/fdinfo': Permesso negato
find: `/proc/2206/task/2223/ns': Permesso negato
find: `/proc/2206/task/2224/fd': Permesso negato
find: `/proc/2206/task/2224/fdinfo': Permesso negato
find: `/proc/2206/task/2224/ns': Permesso negato
find: `/proc/2206/task/2225/fd': Permesso negato
find: `/proc/2206/task/2225/fdinfo': Permesso negato
find: `/proc/2206/task/2225/ns': Permesso negato
find: `/proc/2206/task/2226/fd': Permesso negato
find: `/proc/2206/task/2226/fdinfo': Permesso negato
find: `/proc/2206/task/2226/ns': Permesso negato
find: `/proc/2206/task/2227/fd': Permesso negato
find: `/proc/2206/task/2227/fdinfo': Permesso negato
find: `/proc/2206/task/2227/ns': Permesso negato
find: `/proc/2206/task/2228/fd': Permesso negato
find: `/proc/2206/task/2228/fdinfo': Permesso negato
find: `/proc/2206/task/2228/ns': Permesso negato
find: `/proc/2206/task/2229/fd': Permesso negato
find: `/proc/2206/task/2229/fdinfo': Permesso negato
find: `/proc/2206/task/2229/ns': Permesso negato
find: `/proc/2206/task/2230/fd': Permesso negato
find: `/proc/2206/task/2230/fdinfo': Permesso negato
find: `/proc/2206/task/2230/ns': Permesso negato
find: `/proc/2206/task/2231/fd': Permesso negato
find: `/proc/2206/task/2231/fdinfo': Permesso negato
find: `/proc/2206/task/2231/ns': Permesso negato
find: `/proc/2206/task/2232/fd': Permesso negato
find: `/proc/2206/task/2232/fdinfo': Permesso negato
find: `/proc/2206/task/2232/ns': Permesso negato
find: `/proc/2206/task/2233/fd': Permesso negato
find: `/proc/2206/task/2233/fdinfo': Permesso negato
find: `/proc/2206/task/2233/ns': Permesso negato
find: `/proc/2206/task/2234/fd': Permesso negato
find: `/proc/2206/task/2234/fdinfo': Permesso negato
find: `/proc/2206/task/2234/ns': Permesso negato
find: `/proc/2206/task/2235/fd': Permesso negato
find: `/proc/2206/task/2235/fdinfo': Permesso negato
find: `/proc/2206/task/2235/ns': Permesso negato
find: `/proc/2206/task/2236/fd': Permesso negato
find: `/proc/2206/task/2236/fdinfo': Permesso negato
find: `/proc/2206/task/2236/ns': Permesso negato
find: `/proc/2206/task/2237/fd': Permesso negato
find: `/proc/2206/task/2237/fdinfo': Permesso negato
find: `/proc/2206/task/2237/ns': Permesso negato
find: `/proc/2206/task/2238/fd': Permesso negato
find: `/proc/2206/task/2238/fdinfo': Permesso negato
find: `/proc/2206/task/2238/ns': Permesso negato
find: `/proc/2206/task/2239/fd': Permesso negato
find: `/proc/2206/task/2239/fdinfo': Permesso negato
find: `/proc/2206/task/2239/ns': Permesso negato
find: `/proc/2206/task/2240/fd': Permesso negato
find: `/proc/2206/task/2240/fdinfo': Permesso negato
find: `/proc/2206/task/2240/ns': Permesso negato
find: `/proc/2206/task/2241/fd': Permesso negato
find: `/proc/2206/task/2241/fdinfo': Permesso negato
find: `/proc/2206/task/2241/ns': Permesso negato
find: `/proc/2206/task/2242/fd': Permesso negato
find: `/proc/2206/task/2242/fdinfo': Permesso negato
find: `/proc/2206/task/2242/ns': Permesso negato
find: `/proc/2206/task/2243/fd': Permesso negato
find: `/proc/2206/task/2243/fdinfo': Permesso negato
find: `/proc/2206/task/2243/ns': Permesso negato
find: `/proc/2206/task/2244/fd': Permesso negato
find: `/proc/2206/task/2244/fdinfo': Permesso negato
find: `/proc/2206/task/2244/ns': Permesso negato
find: `/proc/2206/task/2245/fd': Permesso negato
find: `/proc/2206/task/2245/fdinfo': Permesso negato
find: `/proc/2206/task/2245/ns': Permesso negato
find: `/proc/2206/task/2246/fd': Permesso negato
find: `/proc/2206/task/2246/fdinfo': Permesso negato
find: `/proc/2206/task/2246/ns': Permesso negato
find: `/proc/2206/task/2247/fd': Permesso negato
find: `/proc/2206/task/2247/fdinfo': Permesso negato
find: `/proc/2206/task/2247/ns': Permesso negato
find: `/proc/2206/task/2248/fd': Permesso negato
find: `/proc/2206/task/2248/fdinfo': Permesso negato
find: `/proc/2206/task/2248/ns': Permesso negato
find: `/proc/2206/task/2249/fd': Permesso negato
find: `/proc/2206/task/2249/fdinfo': Permesso negato
find: `/proc/2206/task/2249/ns': Permesso negato
find: `/proc/2206/task/2250/fd': Permesso negato
find: `/proc/2206/task/2250/fdinfo': Permesso negato
find: `/proc/2206/task/2250/ns': Permesso negato
find: `/proc/2206/task/2251/fd': Permesso negato
find: `/proc/2206/task/2251/fdinfo': Permesso negato
find: `/proc/2206/task/2251/ns': Permesso negato
find: `/proc/2206/task/2252/fd': Permesso negato
find: `/proc/2206/task/2252/fdinfo': Permesso negato
find: `/proc/2206/task/2252/ns': Permesso negato
find: `/proc/2206/task/2253/fd': Permesso negato
find: `/proc/2206/task/2253/fdinfo': Permesso negato
find: `/proc/2206/task/2253/ns': Permesso negato
find: `/proc/2206/task/2254/fd': Permesso negato
find: `/proc/2206/task/2254/fdinfo': Permesso negato
find: `/proc/2206/task/2254/ns': Permesso negato
find: `/proc/2206/task/2255/fd': Permesso negato
find: `/proc/2206/task/2255/fdinfo': Permesso negato
find: `/proc/2206/task/2255/ns': Permesso negato
find: `/proc/2206/task/2256/fd': Permesso negato
find: `/proc/2206/task/2256/fdinfo': Permesso negato
find: `/proc/2206/task/2256/ns': Permesso negato
find: `/proc/2206/task/2257/fd': Permesso negato
find: `/proc/2206/task/2257/fdinfo': Permesso negato
find: `/proc/2206/task/2257/ns': Permesso negato
find: `/proc/2206/task/2258/fd': Permesso negato
find: `/proc/2206/task/2258/fdinfo': Permesso negato
find: `/proc/2206/task/2258/ns': Permesso negato
find: `/proc/2206/task/2259/fd': Permesso negato
find: `/proc/2206/task/2259/fdinfo': Permesso negato
find: `/proc/2206/task/2259/ns': Permesso negato
find: `/proc/2206/task/2260/fd': Permesso negato
find: `/proc/2206/task/2260/fdinfo': Permesso negato
find: `/proc/2206/task/2260/ns': Permesso negato
find: `/proc/2206/task/2261/fd': Permesso negato
find: `/proc/2206/task/2261/fdinfo': Permesso negato
find: `/proc/2206/task/2261/ns': Permesso negato
find: `/proc/2206/task/2262/fd': Permesso negato
find: `/proc/2206/task/2262/fdinfo': Permesso negato
find: `/proc/2206/task/2262/ns': Permesso negato
find: `/proc/2206/task/2263/fd': Permesso negato
find: `/proc/2206/task/2263/fdinfo': Permesso negato
find: `/proc/2206/task/2263/ns': Permesso negato
find: `/proc/2206/task/2264/fd': Permesso negato
find: `/proc/2206/task/2264/fdinfo': Permesso negato
find: `/proc/2206/task/2264/ns': Permesso negato
find: `/proc/2206/task/2265/fd': Permesso negato
find: `/proc/2206/task/2265/fdinfo': Permesso negato
find: `/proc/2206/task/2265/ns': Permesso negato
find: `/proc/2206/task/2266/fd': Permesso negato
find: `/proc/2206/task/2266/fdinfo': Permesso negato
find: `/proc/2206/task/2266/ns': Permesso negato
find: `/proc/2206/task/2267/fd': Permesso negato
find: `/proc/2206/task/2267/fdinfo': Permesso negato
find: `/proc/2206/task/2267/ns': Permesso negato
find: `/proc/2206/task/2268/fd': Permesso negato
find: `/proc/2206/task/2268/fdinfo': Permesso negato
find: `/proc/2206/task/2268/ns': Permesso negato
find: `/proc/2206/task/2270/fd': Permesso negato
find: `/proc/2206/task/2270/fdinfo': Permesso negato
find: `/proc/2206/task/2270/ns': Permesso negato
find: `/proc/2206/task/2271/fd': Permesso negato
find: `/proc/2206/task/2271/fdinfo': Permesso negato
find: `/proc/2206/task/2271/ns': Permesso negato
find: `/proc/2206/fd': Permesso negato
find: `/proc/2206/fdinfo': Permesso negato
find: `/proc/2206/ns': Permesso negato
find: `/proc/2273/task/2273/fd': Permesso negato
find: `/proc/2273/task/2273/fdinfo': Permesso negato
find: `/proc/2273/task/2273/ns': Permesso negato
find: `/proc/2273/task/2275/fd': Permesso negato
find: `/proc/2273/task/2275/fdinfo': Permesso negato
find: `/proc/2273/task/2275/ns': Permesso negato
find: `/proc/2273/fd': Permesso negato
find: `/proc/2273/fdinfo': Permesso negato
find: `/proc/2273/ns': Permesso negato
find: `/proc/2368/task/2368/fd': Permesso negato
find: `/proc/2368/task/2368/fdinfo': Permesso negato
find: `/proc/2368/task/2368/ns': Permesso negato
find: `/proc/2368/task/2369/fd': Permesso negato
find: `/proc/2368/task/2369/fdinfo': Permesso negato
find: `/proc/2368/task/2369/ns': Permesso negato
find: `/proc/2368/task/2370/fd': Permesso negato
find: `/proc/2368/task/2370/fdinfo': Permesso negato
find: `/proc/2368/task/2370/ns': Permesso negato
find: `/proc/2368/fd': Permesso negato
find: `/proc/2368/fdinfo': Permesso negato
find: `/proc/2368/ns': Permesso negato
find: `/proc/2393/task/2393/fd': Permesso negato
find: `/proc/2393/task/2393/fdinfo': Permesso negato
find: `/proc/2393/task/2393/ns': Permesso negato
find: `/proc/2393/task/2396/fd': Permesso negato
find: `/proc/2393/task/2396/fdinfo': Permesso negato
find: `/proc/2393/task/2396/ns': Permesso negato
find: `/proc/2393/task/2404/fd': Permesso negato
find: `/proc/2393/task/2404/fdinfo': Permesso negato
find: `/proc/2393/task/2404/ns': Permesso negato
find: `/proc/2393/fd': Permesso negato
find: `/proc/2393/fdinfo': Permesso negato
find: `/proc/2393/ns': Permesso negato
find: `/proc/2395/task/2395/fd': Permesso negato
find: `/proc/2395/task/2395/fdinfo': Permesso negato
find: `/proc/2395/task/2395/ns': Permesso negato
find: `/proc/2395/fd': Permesso negato
find: `/proc/2395/fdinfo': Permesso negato
find: `/proc/2395/ns': Permesso negato
find: `/proc/12156/task/12156/fd': Permesso negato
find: `/proc/12156/task/12156/fdinfo': Permesso negato
find: `/proc/12156/task/12156/ns': Permesso negato
find: `/proc/12156/fd': Permesso negato
find: `/proc/12156/fdinfo': Permesso negato
find: `/proc/12156/ns': Permesso negato
find: `/proc/12219/task/12219/fd': Permesso negato
find: `/proc/12219/task/12219/fdinfo': Permesso negato
find: `/proc/12219/task/12219/ns': Permesso negato
find: `/proc/12219/fd': Permesso negato
find: `/proc/12219/fdinfo': Permesso negato
find: `/proc/12219/ns': Permesso negato
find: `/proc/13641/task/13641/fd': Permesso negato
find: `/proc/13641/task/13641/fdinfo': Permesso negato
find: `/proc/13641/task/13641/ns': Permesso negato
find: `/proc/13641/fd': Permesso negato
find: `/proc/13641/fdinfo': Permesso negato
find: `/proc/13641/ns': Permesso negato
find: `/proc/13652/task/13652/fd': Permesso negato
find: `/proc/13652/task/13652/fdinfo': Permesso negato
find: `/proc/13652/task/13652/ns': Permesso negato
find: `/proc/13652/fd': Permesso negato
find: `/proc/13652/fdinfo': Permesso negato
find: `/proc/13652/ns': Permesso negato
find: `/proc/13656/task/13656/fd': Permesso negato
find: `/proc/13656/task/13656/fdinfo': Permesso negato
find: `/proc/13656/task/13656/ns': Permesso negato
find: `/proc/13656/fd': Permesso negato
find: `/proc/13656/fdinfo': Permesso negato
find: `/proc/13656/ns': Permesso negato
find: `/proc/15756/task/15756/fd': Permesso negato
find: `/proc/15756/task/15756/fdinfo': Permesso negato
find: `/proc/15756/task/15756/ns': Permesso negato
find: `/proc/15756/fd': Permesso negato
find: `/proc/15756/fdinfo': Permesso negato
find: `/proc/15756/ns': Permesso negato
find: `/proc/16162/task/16162/fd': Permesso negato
find: `/proc/16162/task/16162/fdinfo': Permesso negato
find: `/proc/16162/task/16162/ns': Permesso negato
find: `/proc/16162/fd': Permesso negato
find: `/proc/16162/fdinfo': Permesso negato
find: `/proc/16162/ns': Permesso negato
find: `/proc/17774/task/17774/fd': Permesso negato
find: `/proc/17774/task/17774/fdinfo': Permesso negato
find: `/proc/17774/task/17774/ns': Permesso negato
find: `/proc/17774/fd': Permesso negato
find: `/proc/17774/fdinfo': Permesso negato
find: `/proc/17774/ns': Permesso negato
find: `/proc/18977/task/18977/fd': Permesso negato
find: `/proc/18977/task/18977/fdinfo': Permesso negato
find: `/proc/18977/task/18977/ns': Permesso negato
find: `/proc/18977/fd': Permesso negato
find: `/proc/18977/fdinfo': Permesso negato
find: `/proc/18977/ns': Permesso negato
find: `/proc/19379/task/19379/fd': Permesso negato
find: `/proc/19379/task/19379/fdinfo': Permesso negato
find: `/proc/19379/task/19379/ns': Permesso negato
find: `/proc/19379/fd': Permesso negato
find: `/proc/19379/fdinfo': Permesso negato
find: `/proc/19379/ns': Permesso negato
find: `/proc/19783/task/19783/fd': Permesso negato
find: `/proc/19783/task/19783/fdinfo': Permesso negato
find: `/proc/19783/task/19783/ns': Permesso negato
find: `/proc/19783/fd': Permesso negato
find: `/proc/19783/fdinfo': Permesso negato
find: `/proc/19783/ns': Permesso negato
find: `/proc/20264/task/20264/fd': Permesso negato
find: `/proc/20264/task/20264/fdinfo': Permesso negato
find: `/proc/20264/task/20264/ns': Permesso negato
find: `/proc/20264/fd': Permesso negato
find: `/proc/20264/fdinfo': Permesso negato
find: `/proc/20264/ns': Permesso negato
find: `/proc/20268/task/20268/fd': Permesso negato
find: `/proc/20268/task/20268/fdinfo': Permesso negato
find: `/proc/20268/task/20268/ns': Permesso negato
find: `/proc/20268/fd': Permesso negato
find: `/proc/20268/fdinfo': Permesso negato
find: `/proc/20268/ns': Permesso negato
find: `/proc/21809/task/21809/fd': Permesso negato
find: `/proc/21809/task/21809/fdinfo': Permesso negato
find: `/proc/21809/task/21809/ns': Permesso negato
find: `/proc/21809/fd': Permesso negato
find: `/proc/21809/fdinfo': Permesso negato
find: `/proc/21809/ns': Permesso negato
find: `/proc/29438/task/29438/fd': Permesso negato
find: `/proc/29438/task/29438/fdinfo': Permesso negato
find: `/proc/29438/task/29438/ns': Permesso negato
find: `/proc/29438/fd': Permesso negato
find: `/proc/29438/fdinfo': Permesso negato
find: `/proc/29438/ns': Permesso negato
find: `/etc/cron.hourly': Permesso negato
find: `/etc/cron.weekly': Permesso negato
find: `/etc/sudoers.d': Permesso negato
find: `/etc/cron.monthly': Permesso negato
find: `/etc/config-archive': Permesso negato
find: `/etc/skel/.ssh': Permesso negato
find: `/etc/polkit-1/localauthority': Permesso negato
find: `/etc/ssl/private': Permesso negato
find: `/etc/audisp/plugins.d': Permesso negato
find: `/etc/courier/aliases': Permesso negato
find: `/etc/courier/filters': Permesso negato
find: `/etc/cron.daily': Permesso negato
find: `/var/db/sudo': Permesso negato
find: `/var/spool/cups': Permesso negato
find: `/var/spool/cron': Permesso negato
find: `/var/cache/ldconfig': Permesso negato
find: `/var/cache/revdep-rebuild': Permesso negato
find: `/var/lib/udisks': Permesso negato
find: `/var/lib/kdm': Permesso negato
find: `/var/lib/mysql': Permesso negato
find: `/var/lib/polkit-1': Permesso negato
find: `/var/lib/mlocate': Permesso negato
find: `/var/lib/courier/authdaemon': Permesso negato
find: `/var/lib/courier/tmp/132407': Permesso negato
find: `/var/lib/courier/tmp/132294': Permesso negato
find: `/var/lib/courier/tmp/132433': Permesso negato
find: `/var/lib/courier/tmp/132354': Permesso negato
find: `/var/lib/courier/tmp/132425': Permesso negato
find: `/var/lib/courier/tmp/132379': Permesso negato
find: `/var/lib/courier/tmp/132345': Permesso negato
find: `/var/lib/courier/tmp/132257': Permesso negato
find: `/var/lib/courier/tmp/132356': Permesso negato
find: `/var/lib/courier/tmp/132336': Permesso negato
find: `/var/lib/courier/tmp/132249': Permesso negato
find: `/var/lib/courier/tmp/132416': Permesso negato
find: `/var/lib/courier/tmp/132370': Permesso negato
find: `/var/lib/courier/tmp/132302': Permesso negato
find: `/var/lib/courier/tmp/132327': Permesso negato
find: `/var/lib/courier/tmp/132285': Permesso negato
find: `/var/lib/courier/tmp/132311': Permesso negato
find: `/var/lib/courier/tmp/132240': Permesso negato
find: `/var/lib/hsqldb': Permesso negato
find: `/var/lib/xdm/authdir': Permesso negato
find: `/var/log/audit': Permesso negato
find: `/var/log/portage/elog': Permesso negato
find: `/var/tmp/kdecache-kdm': Permesso negato
find: `/var/tmp/portage/app-text/calibre-0.8.42/work': Permesso negato
find: `/var/tmp/portage/app-text/calibre-0.8.42/temp/fake_homedir/.config/calibre/plugins': Permesso negato
find: `/var/tmp/portage/app-text/calibre-0.8.42/temp/calibre_0.8.42_tmp_RTYXBj': Permesso negato
find: `/root': Permesso negato
/home/laycastle/ajeje
find: `/tmp/1647484130': Permesso negato
find: `/tmp/ksocket-kdm': Permesso negato
find: `/tmp/1583948272': Permesso negato
find: `/tmp/kde-kdm': Permesso negato
come vedi il file lo trova, ma i messaggi d'errore rendono tutto molto meno leggibile.
p.s. ah, se non lo sapessi
touch crea un file vuoto.
Ciao.

Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 22:34
da $nake
Laycastle ha scritto:
Codice: Seleziona tutto
laycastle ~ $ touch ajeje
laycastle ~ $ cd local/
laycastle ~/local $ find / -name "ajeje" 2> /dev/null
/home/laycastle/ajeje
2> /dev/null l'ho aggiunto giusto per farti confondere ancora un po'.

No, a parte gli scherzi, siccome find non cerca in un database generato come root, ma cerca sul momento, quando lo lanci come utente per ogni cartella/file non leggibile dal tuo utente stampa un errore.
2>/dev/null serve proprio a redirigere gli errori su /dev/null (che puoi pensare un po' come un cestino del sistema, o meglio ancora un buco nero che inghiotte e fa sparire tutto quello che ci metti dentro).
Ecco quello che avrebbe stampato senza
Codice: Seleziona tutto
laycastle ~/local $ find / -name "ajeje"
find: `/run/udisks': Permesso negato
find: `/usr/portage/distfiles/svn-src/.subversion/auth': Permesso negato
find: `/media/dati/lost+found': Permesso negato
find: `/lost+found': Permesso negato
find: `/proc/tty/driver': Permesso negato
find: `/proc/1/task/1/fd': Permesso negato
find: `/proc/1/task/1/fdinfo': Permesso negato
find: `/proc/1/task/1/ns': Permesso negato
find: `/proc/1/fd': Permesso negato
find: `/proc/1/fdinfo': Permesso negato
find: `/proc/1/ns': Permesso negato
find: `/proc/2/task/2/fd': Permesso negato
find: `/proc/2/task/2/fdinfo': Permesso negato
find: `/proc/2/task/2/ns': Permesso negato
find: `/proc/2/fd': Permesso negato
find: `/proc/2/fdinfo': Permesso negato
find: `/proc/2/ns': Permesso negato
find: `/proc/3/task/3/fd': Permesso negato
find: `/proc/3/task/3/fdinfo': Permesso negato
find: `/proc/3/task/3/ns': Permesso negato
find: `/proc/3/fd': Permesso negato
find: `/proc/3/fdinfo': Permesso negato
find: `/proc/3/ns': Permesso negato
find: `/proc/6/task/6/fd': Permesso negato
find: `/proc/6/task/6/fdinfo': Permesso negato
find: `/proc/6/task/6/ns': Permesso negato
find: `/proc/6/fd': Permesso negato
find: `/proc/6/fdinfo': Permesso negato
find: `/proc/6/ns': Permesso negato
find: `/proc/7/task/7/fd': Permesso negato
find: `/proc/7/task/7/fdinfo': Permesso negato
find: `/proc/7/task/7/ns': Permesso negato
find: `/proc/7/fd': Permesso negato
find: `/proc/7/fdinfo': Permesso negato
find: `/proc/7/ns': Permesso negato
find: `/proc/8/task/8/fd': Permesso negato
find: `/proc/8/task/8/fdinfo': Permesso negato
find: `/proc/8/task/8/ns': Permesso negato
find: `/proc/8/fd': Permesso negato
find: `/proc/8/fdinfo': Permesso negato
find: `/proc/8/ns': Permesso negato
find: `/proc/9/task/9/fd': Permesso negato
find: `/proc/9/task/9/fdinfo': Permesso negato
find: `/proc/9/task/9/ns': Permesso negato
find: `/proc/9/fd': Permesso negato
find: `/proc/9/fdinfo': Permesso negato
find: `/proc/9/ns': Permesso negato
find: `/proc/11/task/11/fd': Permesso negato
find: `/proc/11/task/11/fdinfo': Permesso negato
find: `/proc/11/task/11/ns': Permesso negato
find: `/proc/11/fd': Permesso negato
find: `/proc/11/fdinfo': Permesso negato
find: `/proc/11/ns': Permesso negato
find: `/proc/13/task/13/fd': Permesso negato
find: `/proc/13/task/13/fdinfo': Permesso negato
find: `/proc/13/task/13/ns': Permesso negato
find: `/proc/13/fd': Permesso negato
find: `/proc/13/fdinfo': Permesso negato
find: `/proc/13/ns': Permesso negato
find: `/proc/14/task/14/fd': Permesso negato
find: `/proc/14/task/14/fdinfo': Permesso negato
find: `/proc/14/task/14/ns': Permesso negato
find: `/proc/14/fd': Permesso negato
find: `/proc/14/fdinfo': Permesso negato
find: `/proc/14/ns': Permesso negato
find: `/proc/16/task/16/fd': Permesso negato
find: `/proc/16/task/16/fdinfo': Permesso negato
find: `/proc/16/task/16/ns': Permesso negato
find: `/proc/16/fd': Permesso negato
find: `/proc/16/fdinfo': Permesso negato
find: `/proc/16/ns': Permesso negato
find: `/proc/17/task/17/fd': Permesso negato
find: `/proc/17/task/17/fdinfo': Permesso negato
find: `/proc/17/task/17/ns': Permesso negato
find: `/proc/17/fd': Permesso negato
find: `/proc/17/fdinfo': Permesso negato
find: `/proc/17/ns': Permesso negato
find: `/proc/19/task/19/fd': Permesso negato
find: `/proc/19/task/19/fdinfo': Permesso negato
find: `/proc/19/task/19/ns': Permesso negato
find: `/proc/19/fd': Permesso negato
find: `/proc/19/fdinfo': Permesso negato
find: `/proc/19/ns': Permesso negato
find: `/proc/20/task/20/fd': Permesso negato
find: `/proc/20/task/20/fdinfo': Permesso negato
find: `/proc/20/task/20/ns': Permesso negato
find: `/proc/20/fd': Permesso negato
find: `/proc/20/fdinfo': Permesso negato
find: `/proc/20/ns': Permesso negato
find: `/proc/22/task/22/fd': Permesso negato
find: `/proc/22/task/22/fdinfo': Permesso negato
find: `/proc/22/task/22/ns': Permesso negato
find: `/proc/22/fd': Permesso negato
find: `/proc/22/fdinfo': Permesso negato
find: `/proc/22/ns': Permesso negato
find: `/proc/23/task/23/fd': Permesso negato
find: `/proc/23/task/23/fdinfo': Permesso negato
find: `/proc/23/task/23/ns': Permesso negato
find: `/proc/23/fd': Permesso negato
find: `/proc/23/fdinfo': Permesso negato
find: `/proc/23/ns': Permesso negato
find: `/proc/25/task/25/fd': Permesso negato
find: `/proc/25/task/25/fdinfo': Permesso negato
find: `/proc/25/task/25/ns': Permesso negato
find: `/proc/25/fd': Permesso negato
find: `/proc/25/fdinfo': Permesso negato
find: `/proc/25/ns': Permesso negato
find: `/proc/26/task/26/fd': Permesso negato
find: `/proc/26/task/26/fdinfo': Permesso negato
find: `/proc/26/task/26/ns': Permesso negato
find: `/proc/26/fd': Permesso negato
find: `/proc/26/fdinfo': Permesso negato
find: `/proc/26/ns': Permesso negato
find: `/proc/27/task/27/fd': Permesso negato
find: `/proc/27/task/27/fdinfo': Permesso negato
find: `/proc/27/task/27/ns': Permesso negato
find: `/proc/27/fd': Permesso negato
find: `/proc/27/fdinfo': Permesso negato
find: `/proc/27/ns': Permesso negato
find: `/proc/28/task/28/fd': Permesso negato
find: `/proc/28/task/28/fdinfo': Permesso negato
find: `/proc/28/task/28/ns': Permesso negato
find: `/proc/28/fd': Permesso negato
find: `/proc/28/fdinfo': Permesso negato
find: `/proc/28/ns': Permesso negato
find: `/proc/29/task/29/fd': Permesso negato
find: `/proc/29/task/29/fdinfo': Permesso negato
find: `/proc/29/task/29/ns': Permesso negato
find: `/proc/29/fd': Permesso negato
find: `/proc/29/fdinfo': Permesso negato
find: `/proc/29/ns': Permesso negato
find: `/proc/30/task/30/fd': Permesso negato
find: `/proc/30/task/30/fdinfo': Permesso negato
find: `/proc/30/task/30/ns': Permesso negato
find: `/proc/30/fd': Permesso negato
find: `/proc/30/fdinfo': Permesso negato
find: `/proc/30/ns': Permesso negato
find: `/proc/31/task/31/fd': Permesso negato
find: `/proc/31/task/31/fdinfo': Permesso negato
find: `/proc/31/task/31/ns': Permesso negato
find: `/proc/31/fd': Permesso negato
find: `/proc/31/fdinfo': Permesso negato
find: `/proc/31/ns': Permesso negato
find: `/proc/32/task/32/fd': Permesso negato
find: `/proc/32/task/32/fdinfo': Permesso negato
find: `/proc/32/task/32/ns': Permesso negato
find: `/proc/32/fd': Permesso negato
find: `/proc/32/fdinfo': Permesso negato
find: `/proc/32/ns': Permesso negato
find: `/proc/33/task/33/fd': Permesso negato
find: `/proc/33/task/33/fdinfo': Permesso negato
find: `/proc/33/task/33/ns': Permesso negato
find: `/proc/33/fd': Permesso negato
find: `/proc/33/fdinfo': Permesso negato
find: `/proc/33/ns': Permesso negato
find: `/proc/316/task/316/fd': Permesso negato
find: `/proc/316/task/316/fdinfo': Permesso negato
find: `/proc/316/task/316/ns': Permesso negato
find: `/proc/316/fd': Permesso negato
find: `/proc/316/fdinfo': Permesso negato
find: `/proc/316/ns': Permesso negato
find: `/proc/318/task/318/fd': Permesso negato
find: `/proc/318/task/318/fdinfo': Permesso negato
find: `/proc/318/task/318/ns': Permesso negato
find: `/proc/318/fd': Permesso negato
find: `/proc/318/fdinfo': Permesso negato
find: `/proc/318/ns': Permesso negato
find: `/proc/320/task/320/fd': Permesso negato
find: `/proc/320/task/320/fdinfo': Permesso negato
find: `/proc/320/task/320/ns': Permesso negato
find: `/proc/320/fd': Permesso negato
find: `/proc/320/fdinfo': Permesso negato
find: `/proc/320/ns': Permesso negato
find: `/proc/453/task/453/fd': Permesso negato
find: `/proc/453/task/453/fdinfo': Permesso negato
find: `/proc/453/task/453/ns': Permesso negato
find: `/proc/453/fd': Permesso negato
find: `/proc/453/fdinfo': Permesso negato
find: `/proc/453/ns': Permesso negato
find: `/proc/464/task/464/fd': Permesso negato
find: `/proc/464/task/464/fdinfo': Permesso negato
find: `/proc/464/task/464/ns': Permesso negato
find: `/proc/464/fd': Permesso negato
find: `/proc/464/fdinfo': Permesso negato
find: `/proc/464/ns': Permesso negato
find: `/proc/495/task/495/fd': Permesso negato
find: `/proc/495/task/495/fdinfo': Permesso negato
find: `/proc/495/task/495/ns': Permesso negato
find: `/proc/495/fd': Permesso negato
find: `/proc/495/fdinfo': Permesso negato
find: `/proc/495/ns': Permesso negato
find: `/proc/596/task/596/fd': Permesso negato
find: `/proc/596/task/596/fdinfo': Permesso negato
find: `/proc/596/task/596/ns': Permesso negato
find: `/proc/596/fd': Permesso negato
find: `/proc/596/fdinfo': Permesso negato
find: `/proc/596/ns': Permesso negato
find: `/proc/678/task/678/fd': Permesso negato
find: `/proc/678/task/678/fdinfo': Permesso negato
find: `/proc/678/task/678/ns': Permesso negato
find: `/proc/678/fd': Permesso negato
find: `/proc/678/fdinfo': Permesso negato
find: `/proc/678/ns': Permesso negato
find: `/proc/679/task/679/fd': Permesso negato
find: `/proc/679/task/679/fdinfo': Permesso negato
find: `/proc/679/task/679/ns': Permesso negato
find: `/proc/679/fd': Permesso negato
find: `/proc/679/fdinfo': Permesso negato
find: `/proc/679/ns': Permesso negato
find: `/proc/748/task/748/fd': Permesso negato
find: `/proc/748/task/748/fdinfo': Permesso negato
find: `/proc/748/task/748/ns': Permesso negato
find: `/proc/748/fd': Permesso negato
find: `/proc/748/fdinfo': Permesso negato
find: `/proc/748/ns': Permesso negato
find: `/proc/764/task/764/fd': Permesso negato
find: `/proc/764/task/764/fdinfo': Permesso negato
find: `/proc/764/task/764/ns': Permesso negato
find: `/proc/764/fd': Permesso negato
find: `/proc/764/fdinfo': Permesso negato
find: `/proc/764/ns': Permesso negato
find: `/proc/814/task/814/fd': Permesso negato
find: `/proc/814/task/814/fdinfo': Permesso negato
find: `/proc/814/task/814/ns': Permesso negato
find: `/proc/814/fd': Permesso negato
find: `/proc/814/fdinfo': Permesso negato
find: `/proc/814/ns': Permesso negato
find: `/proc/820/task/820/fd': Permesso negato
find: `/proc/820/task/820/fdinfo': Permesso negato
find: `/proc/820/task/820/ns': Permesso negato
find: `/proc/820/fd': Permesso negato
find: `/proc/820/fdinfo': Permesso negato
find: `/proc/820/ns': Permesso negato
find: `/proc/908/task/908/fd': Permesso negato
find: `/proc/908/task/908/fdinfo': Permesso negato
find: `/proc/908/task/908/ns': Permesso negato
find: `/proc/908/fd': Permesso negato
find: `/proc/908/fdinfo': Permesso negato
find: `/proc/908/ns': Permesso negato
find: `/proc/911/task/911/fd': Permesso negato
find: `/proc/911/task/911/fdinfo': Permesso negato
find: `/proc/911/task/911/ns': Permesso negato
find: `/proc/911/fd': Permesso negato
find: `/proc/911/fdinfo': Permesso negato
find: `/proc/911/ns': Permesso negato
find: `/proc/914/task/914/fd': Permesso negato
find: `/proc/914/task/914/fdinfo': Permesso negato
find: `/proc/914/task/914/ns': Permesso negato
find: `/proc/914/fd': Permesso negato
find: `/proc/914/fdinfo': Permesso negato
find: `/proc/914/ns': Permesso negato
find: `/proc/915/task/915/fd': Permesso negato
find: `/proc/915/task/915/fdinfo': Permesso negato
find: `/proc/915/task/915/ns': Permesso negato
find: `/proc/915/fd': Permesso negato
find: `/proc/915/fdinfo': Permesso negato
find: `/proc/915/ns': Permesso negato
find: `/proc/922/task/922/fd': Permesso negato
find: `/proc/922/task/922/fdinfo': Permesso negato
find: `/proc/922/task/922/ns': Permesso negato
find: `/proc/922/fd': Permesso negato
find: `/proc/922/fdinfo': Permesso negato
find: `/proc/922/ns': Permesso negato
find: `/proc/925/task/925/fd': Permesso negato
find: `/proc/925/task/925/fdinfo': Permesso negato
find: `/proc/925/task/925/ns': Permesso negato
find: `/proc/925/fd': Permesso negato
find: `/proc/925/fdinfo': Permesso negato
find: `/proc/925/ns': Permesso negato
find: `/proc/963/task/963/fd': Permesso negato
find: `/proc/963/task/963/fdinfo': Permesso negato
find: `/proc/963/task/963/ns': Permesso negato
find: `/proc/963/fd': Permesso negato
find: `/proc/963/fdinfo': Permesso negato
find: `/proc/963/ns': Permesso negato
find: `/proc/1095/task/1095/fd': Permesso negato
find: `/proc/1095/task/1095/fdinfo': Permesso negato
find: `/proc/1095/task/1095/ns': Permesso negato
find: `/proc/1095/fd': Permesso negato
find: `/proc/1095/fdinfo': Permesso negato
find: `/proc/1095/ns': Permesso negato
find: `/proc/1107/task/1107/fd': Permesso negato
find: `/proc/1107/task/1107/fdinfo': Permesso negato
find: `/proc/1107/task/1107/ns': Permesso negato
find: `/proc/1107/fd': Permesso negato
find: `/proc/1107/fdinfo': Permesso negato
find: `/proc/1107/ns': Permesso negato
find: `/proc/1108/task/1108/fd': Permesso negato
find: `/proc/1108/task/1108/fdinfo': Permesso negato
find: `/proc/1108/task/1108/ns': Permesso negato
find: `/proc/1108/fd': Permesso negato
find: `/proc/1108/fdinfo': Permesso negato
find: `/proc/1108/ns': Permesso negato
find: `/proc/1194/task/1194/fd': Permesso negato
find: `/proc/1194/task/1194/fdinfo': Permesso negato
find: `/proc/1194/task/1194/ns': Permesso negato
find: `/proc/1194/fd': Permesso negato
find: `/proc/1194/fdinfo': Permesso negato
find: `/proc/1194/ns': Permesso negato
find: `/proc/1195/task/1195/fd': Permesso negato
find: `/proc/1195/task/1195/fdinfo': Permesso negato
find: `/proc/1195/task/1195/ns': Permesso negato
find: `/proc/1195/fd': Permesso negato
find: `/proc/1195/fdinfo': Permesso negato
find: `/proc/1195/ns': Permesso negato
find: `/proc/1228/task/1228/fd': Permesso negato
find: `/proc/1228/task/1228/fdinfo': Permesso negato
find: `/proc/1228/task/1228/ns': Permesso negato
find: `/proc/1228/fd': Permesso negato
find: `/proc/1228/fdinfo': Permesso negato
find: `/proc/1228/ns': Permesso negato
find: `/proc/1229/task/1229/fd': Permesso negato
find: `/proc/1229/task/1229/fdinfo': Permesso negato
find: `/proc/1229/task/1229/ns': Permesso negato
find: `/proc/1229/fd': Permesso negato
find: `/proc/1229/fdinfo': Permesso negato
find: `/proc/1229/ns': Permesso negato
find: `/proc/1407/task/1407/fd': Permesso negato
find: `/proc/1407/task/1407/fdinfo': Permesso negato
find: `/proc/1407/task/1407/ns': Permesso negato
find: `/proc/1407/fd': Permesso negato
find: `/proc/1407/fdinfo': Permesso negato
find: `/proc/1407/ns': Permesso negato
find: `/proc/2016/task/2016/fd': Permesso negato
find: `/proc/2016/task/2016/fdinfo': Permesso negato
find: `/proc/2016/task/2016/ns': Permesso negato
find: `/proc/2016/fd': Permesso negato
find: `/proc/2016/fdinfo': Permesso negato
find: `/proc/2016/ns': Permesso negato
find: `/proc/2095/task/2095/fd': Permesso negato
find: `/proc/2095/task/2095/fdinfo': Permesso negato
find: `/proc/2095/task/2095/ns': Permesso negato
find: `/proc/2095/fd': Permesso negato
find: `/proc/2095/fdinfo': Permesso negato
find: `/proc/2095/ns': Permesso negato
find: `/proc/2096/task/2096/fd': Permesso negato
find: `/proc/2096/task/2096/fdinfo': Permesso negato
find: `/proc/2096/task/2096/ns': Permesso negato
find: `/proc/2096/fd': Permesso negato
find: `/proc/2096/fdinfo': Permesso negato
find: `/proc/2096/ns': Permesso negato
find: `/proc/2105/task/2105/fd': Permesso negato
find: `/proc/2105/task/2105/fdinfo': Permesso negato
find: `/proc/2105/task/2105/ns': Permesso negato
find: `/proc/2105/fd': Permesso negato
find: `/proc/2105/fdinfo': Permesso negato
find: `/proc/2105/ns': Permesso negato
find: `/proc/2107/task/2107/fd': Permesso negato
find: `/proc/2107/task/2107/fdinfo': Permesso negato
find: `/proc/2107/task/2107/ns': Permesso negato
find: `/proc/2107/fd': Permesso negato
find: `/proc/2107/fdinfo': Permesso negato
find: `/proc/2107/ns': Permesso negato
find: `/proc/2108/task/2108/fd': Permesso negato
find: `/proc/2108/task/2108/fdinfo': Permesso negato
find: `/proc/2108/task/2108/ns': Permesso negato
find: `/proc/2108/fd': Permesso negato
find: `/proc/2108/fdinfo': Permesso negato
find: `/proc/2108/ns': Permesso negato
find: `/proc/2109/task/2109/fd': Permesso negato
find: `/proc/2109/task/2109/fdinfo': Permesso negato
find: `/proc/2109/task/2109/ns': Permesso negato
find: `/proc/2109/fd': Permesso negato
find: `/proc/2109/fdinfo': Permesso negato
find: `/proc/2109/ns': Permesso negato
find: `/proc/2112/task/2112/fd': Permesso negato
find: `/proc/2112/task/2112/fdinfo': Permesso negato
find: `/proc/2112/task/2112/ns': Permesso negato
find: `/proc/2112/fd': Permesso negato
find: `/proc/2112/fdinfo': Permesso negato
find: `/proc/2112/ns': Permesso negato
find: `/proc/2118/task/2118/fd': Permesso negato
find: `/proc/2118/task/2118/fdinfo': Permesso negato
find: `/proc/2118/task/2118/ns': Permesso negato
find: `/proc/2118/fd': Permesso negato
find: `/proc/2118/fdinfo': Permesso negato
find: `/proc/2118/ns': Permesso negato
find: `/proc/2119/task/2119/fd': Permesso negato
find: `/proc/2119/task/2119/fdinfo': Permesso negato
find: `/proc/2119/task/2119/ns': Permesso negato
find: `/proc/2119/fd': Permesso negato
find: `/proc/2119/fdinfo': Permesso negato
find: `/proc/2119/ns': Permesso negato
find: `/proc/2122/task/2122/fd': Permesso negato
find: `/proc/2122/task/2122/fdinfo': Permesso negato
find: `/proc/2122/task/2122/ns': Permesso negato
find: `/proc/2122/fd': Permesso negato
find: `/proc/2122/fdinfo': Permesso negato
find: `/proc/2122/ns': Permesso negato
find: `/proc/2127/task/2127/fd': Permesso negato
find: `/proc/2127/task/2127/fdinfo': Permesso negato
find: `/proc/2127/task/2127/ns': Permesso negato
find: `/proc/2127/fd': Permesso negato
find: `/proc/2127/fdinfo': Permesso negato
find: `/proc/2127/ns': Permesso negato
find: `/proc/2178/task/2178/fd': Permesso negato
find: `/proc/2178/task/2178/fdinfo': Permesso negato
find: `/proc/2178/task/2178/ns': Permesso negato
find: `/proc/2178/fd': Permesso negato
find: `/proc/2178/fdinfo': Permesso negato
find: `/proc/2178/ns': Permesso negato
find: `/proc/2206/task/2206/fd': Permesso negato
find: `/proc/2206/task/2206/fdinfo': Permesso negato
find: `/proc/2206/task/2206/ns': Permesso negato
find: `/proc/2206/task/2207/fd': Permesso negato
find: `/proc/2206/task/2207/fdinfo': Permesso negato
find: `/proc/2206/task/2207/ns': Permesso negato
find: `/proc/2206/task/2208/fd': Permesso negato
find: `/proc/2206/task/2208/fdinfo': Permesso negato
find: `/proc/2206/task/2208/ns': Permesso negato
find: `/proc/2206/task/2209/fd': Permesso negato
find: `/proc/2206/task/2209/fdinfo': Permesso negato
find: `/proc/2206/task/2209/ns': Permesso negato
find: `/proc/2206/task/2210/fd': Permesso negato
find: `/proc/2206/task/2210/fdinfo': Permesso negato
find: `/proc/2206/task/2210/ns': Permesso negato
find: `/proc/2206/task/2211/fd': Permesso negato
find: `/proc/2206/task/2211/fdinfo': Permesso negato
find: `/proc/2206/task/2211/ns': Permesso negato
find: `/proc/2206/task/2212/fd': Permesso negato
find: `/proc/2206/task/2212/fdinfo': Permesso negato
find: `/proc/2206/task/2212/ns': Permesso negato
find: `/proc/2206/task/2213/fd': Permesso negato
find: `/proc/2206/task/2213/fdinfo': Permesso negato
find: `/proc/2206/task/2213/ns': Permesso negato
find: `/proc/2206/task/2214/fd': Permesso negato
find: `/proc/2206/task/2214/fdinfo': Permesso negato
find: `/proc/2206/task/2214/ns': Permesso negato
find: `/proc/2206/task/2215/fd': Permesso negato
find: `/proc/2206/task/2215/fdinfo': Permesso negato
find: `/proc/2206/task/2215/ns': Permesso negato
find: `/proc/2206/task/2216/fd': Permesso negato
find: `/proc/2206/task/2216/fdinfo': Permesso negato
find: `/proc/2206/task/2216/ns': Permesso negato
find: `/proc/2206/task/2217/fd': Permesso negato
find: `/proc/2206/task/2217/fdinfo': Permesso negato
find: `/proc/2206/task/2217/ns': Permesso negato
find: `/proc/2206/task/2218/fd': Permesso negato
find: `/proc/2206/task/2218/fdinfo': Permesso negato
find: `/proc/2206/task/2218/ns': Permesso negato
find: `/proc/2206/task/2219/fd': Permesso negato
find: `/proc/2206/task/2219/fdinfo': Permesso negato
find: `/proc/2206/task/2219/ns': Permesso negato
find: `/proc/2206/task/2220/fd': Permesso negato
find: `/proc/2206/task/2220/fdinfo': Permesso negato
find: `/proc/2206/task/2220/ns': Permesso negato
find: `/proc/2206/task/2221/fd': Permesso negato
find: `/proc/2206/task/2221/fdinfo': Permesso negato
find: `/proc/2206/task/2221/ns': Permesso negato
find: `/proc/2206/task/2222/fd': Permesso negato
find: `/proc/2206/task/2222/fdinfo': Permesso negato
find: `/proc/2206/task/2222/ns': Permesso negato
find: `/proc/2206/task/2223/fd': Permesso negato
find: `/proc/2206/task/2223/fdinfo': Permesso negato
find: `/proc/2206/task/2223/ns': Permesso negato
find: `/proc/2206/task/2224/fd': Permesso negato
find: `/proc/2206/task/2224/fdinfo': Permesso negato
find: `/proc/2206/task/2224/ns': Permesso negato
find: `/proc/2206/task/2225/fd': Permesso negato
find: `/proc/2206/task/2225/fdinfo': Permesso negato
find: `/proc/2206/task/2225/ns': Permesso negato
find: `/proc/2206/task/2226/fd': Permesso negato
find: `/proc/2206/task/2226/fdinfo': Permesso negato
find: `/proc/2206/task/2226/ns': Permesso negato
find: `/proc/2206/task/2227/fd': Permesso negato
find: `/proc/2206/task/2227/fdinfo': Permesso negato
find: `/proc/2206/task/2227/ns': Permesso negato
find: `/proc/2206/task/2228/fd': Permesso negato
find: `/proc/2206/task/2228/fdinfo': Permesso negato
find: `/proc/2206/task/2228/ns': Permesso negato
find: `/proc/2206/task/2229/fd': Permesso negato
find: `/proc/2206/task/2229/fdinfo': Permesso negato
find: `/proc/2206/task/2229/ns': Permesso negato
find: `/proc/2206/task/2230/fd': Permesso negato
find: `/proc/2206/task/2230/fdinfo': Permesso negato
find: `/proc/2206/task/2230/ns': Permesso negato
find: `/proc/2206/task/2231/fd': Permesso negato
find: `/proc/2206/task/2231/fdinfo': Permesso negato
find: `/proc/2206/task/2231/ns': Permesso negato
find: `/proc/2206/task/2232/fd': Permesso negato
find: `/proc/2206/task/2232/fdinfo': Permesso negato
find: `/proc/2206/task/2232/ns': Permesso negato
find: `/proc/2206/task/2233/fd': Permesso negato
find: `/proc/2206/task/2233/fdinfo': Permesso negato
find: `/proc/2206/task/2233/ns': Permesso negato
find: `/proc/2206/task/2234/fd': Permesso negato
find: `/proc/2206/task/2234/fdinfo': Permesso negato
find: `/proc/2206/task/2234/ns': Permesso negato
find: `/proc/2206/task/2235/fd': Permesso negato
find: `/proc/2206/task/2235/fdinfo': Permesso negato
find: `/proc/2206/task/2235/ns': Permesso negato
find: `/proc/2206/task/2236/fd': Permesso negato
find: `/proc/2206/task/2236/fdinfo': Permesso negato
find: `/proc/2206/task/2236/ns': Permesso negato
find: `/proc/2206/task/2237/fd': Permesso negato
find: `/proc/2206/task/2237/fdinfo': Permesso negato
find: `/proc/2206/task/2237/ns': Permesso negato
find: `/proc/2206/task/2238/fd': Permesso negato
find: `/proc/2206/task/2238/fdinfo': Permesso negato
find: `/proc/2206/task/2238/ns': Permesso negato
find: `/proc/2206/task/2239/fd': Permesso negato
find: `/proc/2206/task/2239/fdinfo': Permesso negato
find: `/proc/2206/task/2239/ns': Permesso negato
find: `/proc/2206/task/2240/fd': Permesso negato
find: `/proc/2206/task/2240/fdinfo': Permesso negato
find: `/proc/2206/task/2240/ns': Permesso negato
find: `/proc/2206/task/2241/fd': Permesso negato
find: `/proc/2206/task/2241/fdinfo': Permesso negato
find: `/proc/2206/task/2241/ns': Permesso negato
find: `/proc/2206/task/2242/fd': Permesso negato
find: `/proc/2206/task/2242/fdinfo': Permesso negato
find: `/proc/2206/task/2242/ns': Permesso negato
find: `/proc/2206/task/2243/fd': Permesso negato
find: `/proc/2206/task/2243/fdinfo': Permesso negato
find: `/proc/2206/task/2243/ns': Permesso negato
find: `/proc/2206/task/2244/fd': Permesso negato
find: `/proc/2206/task/2244/fdinfo': Permesso negato
find: `/proc/2206/task/2244/ns': Permesso negato
find: `/proc/2206/task/2245/fd': Permesso negato
find: `/proc/2206/task/2245/fdinfo': Permesso negato
find: `/proc/2206/task/2245/ns': Permesso negato
find: `/proc/2206/task/2246/fd': Permesso negato
find: `/proc/2206/task/2246/fdinfo': Permesso negato
find: `/proc/2206/task/2246/ns': Permesso negato
find: `/proc/2206/task/2247/fd': Permesso negato
find: `/proc/2206/task/2247/fdinfo': Permesso negato
find: `/proc/2206/task/2247/ns': Permesso negato
find: `/proc/2206/task/2248/fd': Permesso negato
find: `/proc/2206/task/2248/fdinfo': Permesso negato
find: `/proc/2206/task/2248/ns': Permesso negato
find: `/proc/2206/task/2249/fd': Permesso negato
find: `/proc/2206/task/2249/fdinfo': Permesso negato
find: `/proc/2206/task/2249/ns': Permesso negato
find: `/proc/2206/task/2250/fd': Permesso negato
find: `/proc/2206/task/2250/fdinfo': Permesso negato
find: `/proc/2206/task/2250/ns': Permesso negato
find: `/proc/2206/task/2251/fd': Permesso negato
find: `/proc/2206/task/2251/fdinfo': Permesso negato
find: `/proc/2206/task/2251/ns': Permesso negato
find: `/proc/2206/task/2252/fd': Permesso negato
find: `/proc/2206/task/2252/fdinfo': Permesso negato
find: `/proc/2206/task/2252/ns': Permesso negato
find: `/proc/2206/task/2253/fd': Permesso negato
find: `/proc/2206/task/2253/fdinfo': Permesso negato
find: `/proc/2206/task/2253/ns': Permesso negato
find: `/proc/2206/task/2254/fd': Permesso negato
find: `/proc/2206/task/2254/fdinfo': Permesso negato
find: `/proc/2206/task/2254/ns': Permesso negato
find: `/proc/2206/task/2255/fd': Permesso negato
find: `/proc/2206/task/2255/fdinfo': Permesso negato
find: `/proc/2206/task/2255/ns': Permesso negato
find: `/proc/2206/task/2256/fd': Permesso negato
find: `/proc/2206/task/2256/fdinfo': Permesso negato
find: `/proc/2206/task/2256/ns': Permesso negato
find: `/proc/2206/task/2257/fd': Permesso negato
find: `/proc/2206/task/2257/fdinfo': Permesso negato
find: `/proc/2206/task/2257/ns': Permesso negato
find: `/proc/2206/task/2258/fd': Permesso negato
find: `/proc/2206/task/2258/fdinfo': Permesso negato
find: `/proc/2206/task/2258/ns': Permesso negato
find: `/proc/2206/task/2259/fd': Permesso negato
find: `/proc/2206/task/2259/fdinfo': Permesso negato
find: `/proc/2206/task/2259/ns': Permesso negato
find: `/proc/2206/task/2260/fd': Permesso negato
find: `/proc/2206/task/2260/fdinfo': Permesso negato
find: `/proc/2206/task/2260/ns': Permesso negato
find: `/proc/2206/task/2261/fd': Permesso negato
find: `/proc/2206/task/2261/fdinfo': Permesso negato
find: `/proc/2206/task/2261/ns': Permesso negato
find: `/proc/2206/task/2262/fd': Permesso negato
find: `/proc/2206/task/2262/fdinfo': Permesso negato
find: `/proc/2206/task/2262/ns': Permesso negato
find: `/proc/2206/task/2263/fd': Permesso negato
find: `/proc/2206/task/2263/fdinfo': Permesso negato
find: `/proc/2206/task/2263/ns': Permesso negato
find: `/proc/2206/task/2264/fd': Permesso negato
find: `/proc/2206/task/2264/fdinfo': Permesso negato
find: `/proc/2206/task/2264/ns': Permesso negato
find: `/proc/2206/task/2265/fd': Permesso negato
find: `/proc/2206/task/2265/fdinfo': Permesso negato
find: `/proc/2206/task/2265/ns': Permesso negato
find: `/proc/2206/task/2266/fd': Permesso negato
find: `/proc/2206/task/2266/fdinfo': Permesso negato
find: `/proc/2206/task/2266/ns': Permesso negato
find: `/proc/2206/task/2267/fd': Permesso negato
find: `/proc/2206/task/2267/fdinfo': Permesso negato
find: `/proc/2206/task/2267/ns': Permesso negato
find: `/proc/2206/task/2268/fd': Permesso negato
find: `/proc/2206/task/2268/fdinfo': Permesso negato
find: `/proc/2206/task/2268/ns': Permesso negato
find: `/proc/2206/task/2270/fd': Permesso negato
find: `/proc/2206/task/2270/fdinfo': Permesso negato
find: `/proc/2206/task/2270/ns': Permesso negato
find: `/proc/2206/task/2271/fd': Permesso negato
find: `/proc/2206/task/2271/fdinfo': Permesso negato
find: `/proc/2206/task/2271/ns': Permesso negato
find: `/proc/2206/fd': Permesso negato
find: `/proc/2206/fdinfo': Permesso negato
find: `/proc/2206/ns': Permesso negato
find: `/proc/2273/task/2273/fd': Permesso negato
find: `/proc/2273/task/2273/fdinfo': Permesso negato
find: `/proc/2273/task/2273/ns': Permesso negato
find: `/proc/2273/task/2275/fd': Permesso negato
find: `/proc/2273/task/2275/fdinfo': Permesso negato
find: `/proc/2273/task/2275/ns': Permesso negato
find: `/proc/2273/fd': Permesso negato
find: `/proc/2273/fdinfo': Permesso negato
find: `/proc/2273/ns': Permesso negato
find: `/proc/2368/task/2368/fd': Permesso negato
find: `/proc/2368/task/2368/fdinfo': Permesso negato
find: `/proc/2368/task/2368/ns': Permesso negato
find: `/proc/2368/task/2369/fd': Permesso negato
find: `/proc/2368/task/2369/fdinfo': Permesso negato
find: `/proc/2368/task/2369/ns': Permesso negato
find: `/proc/2368/task/2370/fd': Permesso negato
find: `/proc/2368/task/2370/fdinfo': Permesso negato
find: `/proc/2368/task/2370/ns': Permesso negato
find: `/proc/2368/fd': Permesso negato
find: `/proc/2368/fdinfo': Permesso negato
find: `/proc/2368/ns': Permesso negato
find: `/proc/2393/task/2393/fd': Permesso negato
find: `/proc/2393/task/2393/fdinfo': Permesso negato
find: `/proc/2393/task/2393/ns': Permesso negato
find: `/proc/2393/task/2396/fd': Permesso negato
find: `/proc/2393/task/2396/fdinfo': Permesso negato
find: `/proc/2393/task/2396/ns': Permesso negato
find: `/proc/2393/task/2404/fd': Permesso negato
find: `/proc/2393/task/2404/fdinfo': Permesso negato
find: `/proc/2393/task/2404/ns': Permesso negato
find: `/proc/2393/fd': Permesso negato
find: `/proc/2393/fdinfo': Permesso negato
find: `/proc/2393/ns': Permesso negato
find: `/proc/2395/task/2395/fd': Permesso negato
find: `/proc/2395/task/2395/fdinfo': Permesso negato
find: `/proc/2395/task/2395/ns': Permesso negato
find: `/proc/2395/fd': Permesso negato
find: `/proc/2395/fdinfo': Permesso negato
find: `/proc/2395/ns': Permesso negato
find: `/proc/12156/task/12156/fd': Permesso negato
find: `/proc/12156/task/12156/fdinfo': Permesso negato
find: `/proc/12156/task/12156/ns': Permesso negato
find: `/proc/12156/fd': Permesso negato
find: `/proc/12156/fdinfo': Permesso negato
find: `/proc/12156/ns': Permesso negato
find: `/proc/12219/task/12219/fd': Permesso negato
find: `/proc/12219/task/12219/fdinfo': Permesso negato
find: `/proc/12219/task/12219/ns': Permesso negato
find: `/proc/12219/fd': Permesso negato
find: `/proc/12219/fdinfo': Permesso negato
find: `/proc/12219/ns': Permesso negato
find: `/proc/13641/task/13641/fd': Permesso negato
find: `/proc/13641/task/13641/fdinfo': Permesso negato
find: `/proc/13641/task/13641/ns': Permesso negato
find: `/proc/13641/fd': Permesso negato
find: `/proc/13641/fdinfo': Permesso negato
find: `/proc/13641/ns': Permesso negato
find: `/proc/13652/task/13652/fd': Permesso negato
find: `/proc/13652/task/13652/fdinfo': Permesso negato
find: `/proc/13652/task/13652/ns': Permesso negato
find: `/proc/13652/fd': Permesso negato
find: `/proc/13652/fdinfo': Permesso negato
find: `/proc/13652/ns': Permesso negato
find: `/proc/13656/task/13656/fd': Permesso negato
find: `/proc/13656/task/13656/fdinfo': Permesso negato
find: `/proc/13656/task/13656/ns': Permesso negato
find: `/proc/13656/fd': Permesso negato
find: `/proc/13656/fdinfo': Permesso negato
find: `/proc/13656/ns': Permesso negato
find: `/proc/15756/task/15756/fd': Permesso negato
find: `/proc/15756/task/15756/fdinfo': Permesso negato
find: `/proc/15756/task/15756/ns': Permesso negato
find: `/proc/15756/fd': Permesso negato
find: `/proc/15756/fdinfo': Permesso negato
find: `/proc/15756/ns': Permesso negato
find: `/proc/16162/task/16162/fd': Permesso negato
find: `/proc/16162/task/16162/fdinfo': Permesso negato
find: `/proc/16162/task/16162/ns': Permesso negato
find: `/proc/16162/fd': Permesso negato
find: `/proc/16162/fdinfo': Permesso negato
find: `/proc/16162/ns': Permesso negato
find: `/proc/17774/task/17774/fd': Permesso negato
find: `/proc/17774/task/17774/fdinfo': Permesso negato
find: `/proc/17774/task/17774/ns': Permesso negato
find: `/proc/17774/fd': Permesso negato
find: `/proc/17774/fdinfo': Permesso negato
find: `/proc/17774/ns': Permesso negato
find: `/proc/18977/task/18977/fd': Permesso negato
find: `/proc/18977/task/18977/fdinfo': Permesso negato
find: `/proc/18977/task/18977/ns': Permesso negato
find: `/proc/18977/fd': Permesso negato
find: `/proc/18977/fdinfo': Permesso negato
find: `/proc/18977/ns': Permesso negato
find: `/proc/19379/task/19379/fd': Permesso negato
find: `/proc/19379/task/19379/fdinfo': Permesso negato
find: `/proc/19379/task/19379/ns': Permesso negato
find: `/proc/19379/fd': Permesso negato
find: `/proc/19379/fdinfo': Permesso negato
find: `/proc/19379/ns': Permesso negato
find: `/proc/19783/task/19783/fd': Permesso negato
find: `/proc/19783/task/19783/fdinfo': Permesso negato
find: `/proc/19783/task/19783/ns': Permesso negato
find: `/proc/19783/fd': Permesso negato
find: `/proc/19783/fdinfo': Permesso negato
find: `/proc/19783/ns': Permesso negato
find: `/proc/20264/task/20264/fd': Permesso negato
find: `/proc/20264/task/20264/fdinfo': Permesso negato
find: `/proc/20264/task/20264/ns': Permesso negato
find: `/proc/20264/fd': Permesso negato
find: `/proc/20264/fdinfo': Permesso negato
find: `/proc/20264/ns': Permesso negato
find: `/proc/20268/task/20268/fd': Permesso negato
find: `/proc/20268/task/20268/fdinfo': Permesso negato
find: `/proc/20268/task/20268/ns': Permesso negato
find: `/proc/20268/fd': Permesso negato
find: `/proc/20268/fdinfo': Permesso negato
find: `/proc/20268/ns': Permesso negato
find: `/proc/21809/task/21809/fd': Permesso negato
find: `/proc/21809/task/21809/fdinfo': Permesso negato
find: `/proc/21809/task/21809/ns': Permesso negato
find: `/proc/21809/fd': Permesso negato
find: `/proc/21809/fdinfo': Permesso negato
find: `/proc/21809/ns': Permesso negato
find: `/proc/29438/task/29438/fd': Permesso negato
find: `/proc/29438/task/29438/fdinfo': Permesso negato
find: `/proc/29438/task/29438/ns': Permesso negato
find: `/proc/29438/fd': Permesso negato
find: `/proc/29438/fdinfo': Permesso negato
find: `/proc/29438/ns': Permesso negato
find: `/etc/cron.hourly': Permesso negato
find: `/etc/cron.weekly': Permesso negato
find: `/etc/sudoers.d': Permesso negato
find: `/etc/cron.monthly': Permesso negato
find: `/etc/config-archive': Permesso negato
find: `/etc/skel/.ssh': Permesso negato
find: `/etc/polkit-1/localauthority': Permesso negato
find: `/etc/ssl/private': Permesso negato
find: `/etc/audisp/plugins.d': Permesso negato
find: `/etc/courier/aliases': Permesso negato
find: `/etc/courier/filters': Permesso negato
find: `/etc/cron.daily': Permesso negato
find: `/var/db/sudo': Permesso negato
find: `/var/spool/cups': Permesso negato
find: `/var/spool/cron': Permesso negato
find: `/var/cache/ldconfig': Permesso negato
find: `/var/cache/revdep-rebuild': Permesso negato
find: `/var/lib/udisks': Permesso negato
find: `/var/lib/kdm': Permesso negato
find: `/var/lib/mysql': Permesso negato
find: `/var/lib/polkit-1': Permesso negato
find: `/var/lib/mlocate': Permesso negato
find: `/var/lib/courier/authdaemon': Permesso negato
find: `/var/lib/courier/tmp/132407': Permesso negato
find: `/var/lib/courier/tmp/132294': Permesso negato
find: `/var/lib/courier/tmp/132433': Permesso negato
find: `/var/lib/courier/tmp/132354': Permesso negato
find: `/var/lib/courier/tmp/132425': Permesso negato
find: `/var/lib/courier/tmp/132379': Permesso negato
find: `/var/lib/courier/tmp/132345': Permesso negato
find: `/var/lib/courier/tmp/132257': Permesso negato
find: `/var/lib/courier/tmp/132356': Permesso negato
find: `/var/lib/courier/tmp/132336': Permesso negato
find: `/var/lib/courier/tmp/132249': Permesso negato
find: `/var/lib/courier/tmp/132416': Permesso negato
find: `/var/lib/courier/tmp/132370': Permesso negato
find: `/var/lib/courier/tmp/132302': Permesso negato
find: `/var/lib/courier/tmp/132327': Permesso negato
find: `/var/lib/courier/tmp/132285': Permesso negato
find: `/var/lib/courier/tmp/132311': Permesso negato
find: `/var/lib/courier/tmp/132240': Permesso negato
find: `/var/lib/hsqldb': Permesso negato
find: `/var/lib/xdm/authdir': Permesso negato
find: `/var/log/audit': Permesso negato
find: `/var/log/portage/elog': Permesso negato
find: `/var/tmp/kdecache-kdm': Permesso negato
find: `/var/tmp/portage/app-text/calibre-0.8.42/work': Permesso negato
find: `/var/tmp/portage/app-text/calibre-0.8.42/temp/fake_homedir/.config/calibre/plugins': Permesso negato
find: `/var/tmp/portage/app-text/calibre-0.8.42/temp/calibre_0.8.42_tmp_RTYXBj': Permesso negato
find: `/root': Permesso negato
/home/laycastle/ajeje
find: `/tmp/1647484130': Permesso negato
find: `/tmp/ksocket-kdm': Permesso negato
find: `/tmp/1583948272': Permesso negato
find: `/tmp/kde-kdm': Permesso negato
come vedi il file lo trova, ma i messaggi d'errore rendono tutto molto meno leggibile.
p.s. ah, se non lo sapessi
touch crea un file vuoto.
Ciao.
Mai avuta fino ad oggi una guida cosi densa di informazioni e cosi ben strutturata!
Devo dire che sei stato limpido come l'acqua di montagna!
Ti ringrazio,anche per avermi detto come si crea un file di testo da terminale,mi mancava...

Sto facendo una mini guida cercando di salvarmi uno per uno i comandi che imparo,cosi non li dimentico mai anche se non li uso sempre,e la uso con parole mie,come le tue comprensibili e accessibili,cosi se un giorno qualcuno ne avrà bisogno anche se discorsiva capirebbe almeno!

In ogni caso volevo dire che ho testato i comandi sopra citati per eliminare i file,ma non hanno funzionato,altre idee?
Codice: Seleziona tutto
find /home -name "*REALTEK*"-exec rm {} \;
find: i percorsi devono precedere le espressioni: rm
Uso: find [-H] [-L] [-P] [-Olivello] [-D help|tree|search|stat|rates|opt|exec] [percorso...] [espressione]
root@snake-pc:/home/snake/Scrivania#
voglio puntualizzare che aveva tutte le autorizzazioni per eliminare i file,dato che poco prima avevo dato un
ecc ecc li ho provati tutti,come potremmo procedere per la risoluzione originaria?:)
Re: Eliminazione multipla di file"terminale"
Inviato: mercoledì 11 aprile 2012, 22:35
da $nake
altro comando che non ci stava nel post di prima
Codice: Seleziona tutto
root@snake-pc:/home/snake/Scrivania# rm $(locate REALTEK)
rm: impossibile rimuovere "/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility-REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility.menu": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility-Uninstall.menu": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/desktop-directories/wine-Programmi-REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility.directory": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/icons/hicolor/16x16/apps/E116_REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Driver": File o directory non esistente
rm: impossibile rimuovere "and": File o directory non esistente
rm: impossibile rimuovere "Utility.0.png": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/icons/hicolor/32x32/apps/E116_REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Driver": File o directory non esistente
rm: impossibile rimuovere "and": File o directory non esistente
rm: impossibile rimuovere "Utility.0.png": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu": File o directory non esistente
rm: impossibile rimuovere "Start/Programmi/REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu": File o directory non esistente
rm: impossibile rimuovere "Start/Programmi/Esecuzione": File o directory non esistente
rm: impossibile rimuovere "automatica/REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility.lnk": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu": File o directory non esistente
rm: impossibile rimuovere "Start/Programmi/REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility/REALTEK": File o directory non esistente
rm: impossibile rimuovere "11n": File o directory non esistente
rm: impossibile rimuovere "USB": File o directory non esistente
rm: impossibile rimuovere "Wireless": File o directory non esistente
rm: impossibile rimuovere "LAN": File o directory non esistente
rm: impossibile rimuovere "Utility.lnk": File o directory non esistente
Re: Eliminazione multipla di file"terminale"
Inviato: giovedì 12 aprile 2012, 16:10
da Laycastle
Allora, iniziamo con find
Codice: Seleziona tutto
find /home -name "*REALTEK*"-exec rm {} \;
find: i percorsi devono precedere le espressioni: rm
Uso: find [-H] [-L] [-P] [-Olivello] [-D help|tree|search|stat|rates|opt|exec] [percorso...] [espressione]
root@snake-pc:/home/snake/Scrivania#
Qua è un errore di sintassi semplicissimo che avevo commesso nello scrivere: mi ero mangiato uno spazio prima di -exec.
Così è corretto:
Per quanto riguarda il secondo il problema è dovuto al fatto che ci sono spazi nei nomi dei file che devi rimuovere e
rm non riesce a capire dove finisce un file e dove ne comincia un altro. Per ovviare al problema degli spazi, come forse già sai, si ricorre normalmente alle virgolette.
es.
Codice: Seleziona tutto
$ touch "1 2"
$ rm 1 2
rm: impossibile rimuovere "1": File o directory non esistente
rm: impossibile rimuovere "2": File o directory non esistente
$ rm "1 2"
Un modo per ovviare al problema è
vediamo di spiegare anche questo:
| è una pipe ("tubo") e già il nome dice tutto.

In pratica serve per usare l'output (risultato) di un comando come input (argomento) per un altro.
es.
quindi in quel comando l'output di
locate lo mandiamo a
xargs.
Il nostro amico
xargs è quello che fa il lavoro vero e proprio, praticamente legge l'ouput che gli mandiamo riga per riga e lo passa "virgolettato" a rm (ovviamente sto semplificando).

Ma come fa a sapere dove dividerlo?
Lo sa perché glielo stiamo dicendo noi con quel
-d '\n' .
-d è l'opzione che serve per segnalargli il "delimitatore" (il carattere in base al quale dividere quello che gli stiamo passando).
es.
Codice: Seleziona tutto
echo "PippoEPaperino" | xargs -d 'E' echo
Pippo Paperino
\n è un carattere speciale che sta a indicare "a capo".
Ciao
Re: Eliminazione multipla di file"terminale"
Inviato: giovedì 12 aprile 2012, 17:23
da $nake
Conosco alcuni caratteri speciali perchè ho programmato un pochino,se non erro /n è un programma di escape che in c o python serve per andare a capo,qui se ho ben capito serve per altro,in ogni caso credo di aver cancellato la maggior parte dei file,anche se non capisco come o con quale esatto comando,e questo non è bene....
In ogni caso,ti mostro l'output dei vari comandi che ho fatto
Codice: Seleziona tutto
root@snake-pc:/home/snake/Scrivania# locate REALTEK | xargs -d '\n' rm
rm: impossibile rimuovere "/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK 11n USB Wireless LAN Utility-REALTEK 11n USB Wireless LAN Utility.menu": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK 11n USB Wireless LAN Utility-Uninstall.menu": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/desktop-directories/wine-Programmi-REALTEK 11n USB Wireless LAN Utility.directory": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/icons/hicolor/16x16/apps/E116_REALTEK 11n USB Wireless LAN Driver and Utility.0.png": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/icons/hicolor/32x32/apps/E116_REALTEK 11n USB Wireless LAN Driver and Utility.0.png": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility": È una directory
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/Esecuzione automatica/REALTEK 11n USB Wireless LAN Utility.lnk": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility/REALTEK 11n USB Wireless LAN Utility.lnk": File o directory non esistente
root@snake-pc:/home/snake/Scrivania#
questo probabilmente perchè i file sono stati cancellati da comando
Riguardo all'esempio dell'imput ed output è molto interessante,ed ha una sintassi simile al cmd di windows,ma a me non va,e non capisco il perchè...
Codice: Seleziona tutto
snake@snake-pc:~/Scrivania$ echo ciao | touch
ùtouch: manca il file operando
Usare «touch --help» per ulteriori informazioni.
perchè se non sbaglio questo comando dovrebbe creare un file di testo con all'interno scritto ciao,giusto?
in ogni caso,l'obiettivo primario del post è stato raggiunto,come puoi vedere è stato tutto eliminato...
Codice: Seleziona tutto
root@snake-pc:/home/snake/Scrivania# updatedb
root@snake-pc:/home/snake/Scrivania# locate REALTEK
root@snake-pc:/home/snake/Scrivania#
Ma prima di mettere risolto voglio chiederti una cosa preziosa,conosci parecchie decine di comandi a quanto vedo,come fai?non credo sia tutta memoria,anche se la memoria è fondamentale come la pratica,avresti una guida intuitiva da condividere in modo da poter accrescere il mio bagaglio culturale a questo riguardo!
Grazie per tutto l'aiuto!
Re: Eliminazione multipla di file"terminale"
Inviato: giovedì 12 aprile 2012, 17:41
da Laycastle
$nake ha scritto:
Conosco alcuni caratteri speciali perchè ho programmato un pochino,se non erro /n è un programma di escape che in c o python serve per andare a capo,qui se ho ben capito serve per altro,in ogni caso credo di aver cancellato la maggior parte dei file,anche se non capisco come o con quale esatto comando,e questo non è bene....
In ogni caso,ti mostro l'output dei vari comandi che ho fatto
Codice: Seleziona tutto
root@snake-pc:/home/snake/Scrivania# locate REALTEK | xargs -d '\n' rm
rm: impossibile rimuovere "/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK 11n USB Wireless LAN Utility-REALTEK 11n USB Wireless LAN Utility.menu": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.config/menus/applications-merged/wine-Programmi-REALTEK 11n USB Wireless LAN Utility-Uninstall.menu": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/desktop-directories/wine-Programmi-REALTEK 11n USB Wireless LAN Utility.directory": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/icons/hicolor/16x16/apps/E116_REALTEK 11n USB Wireless LAN Driver and Utility.0.png": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.local/share/icons/hicolor/32x32/apps/E116_REALTEK 11n USB Wireless LAN Driver and Utility.0.png": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility": È una directory
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/Esecuzione automatica/REALTEK 11n USB Wireless LAN Utility.lnk": File o directory non esistente
rm: impossibile rimuovere "/home/snake/.wine/drive_c/users/Public/Menu Start/Programmi/REALTEK 11n USB Wireless LAN Utility/REALTEK 11n USB Wireless LAN Utility.lnk": File o directory non esistente
root@snake-pc:/home/snake/Scrivania#
questo probabilmente perchè i file sono stati cancellati da comando
Infatti se guardi i nomi dei file sono interi, mentre prima erano stati tagliati.
$nake ha scritto:
Riguardo all'esempio dell'imput ed output è molto interessante,ed ha una sintassi simile al cmd di windows,ma a me non va,e non capisco il perchè...
Codice: Seleziona tutto
snake@snake-pc:~/Scrivania$ echo ciao | touch
ùtouch: manca il file operando
Usare «touch --help» per ulteriori informazioni.
Allora qua la colpa è mia che non avevo provato. Non tutti i comandi supportano questo genere di input
touch e
rm sono tra questi. In questi casi xargs ci viene di nuovo in aiuto.
così crei un file vuoto di nome "ciao". Stessa cosa di
Ma prima di mettere risolto voglio chiederti una cosa preziosa,conosci parecchie decine di comandi a quanto vedo,come fai?
I comandi a memoria me li ricordo senza problemi per i dettagli sulla sintassi/opzioni spulcio il manuale
avresti una guida intuitiva da condividere in modo da poter accrescere il mio bagaglio culturale a questo riguardo!
Questa guida è una miniera d'oro:
http://www.pluto.it/files/ildp/guide/abs/index.html
Re: Eliminazione multipla di file"terminale"
Inviato: giovedì 12 aprile 2012, 17:56
da $nake
Ma la sai una cosa,il comando ora funziona con xsargs,ma io ancora non ho capito cosa sia e a cosa serve esattamente questo benedetto xsargs...

PS:grazie tante per la guida,ne farò tesoro,ma qualcosa momentaneamente non va,forse il server e down perchè non accenna ad aprirsi,la pagina carica senza risultato,che non sia la mia connessione...In ogni caso salvo il link al sicuro in un bel doc..

Re: Eliminazione multipla di file"terminale"
Inviato: giovedì 12 aprile 2012, 18:03
da Laycastle
$nake ha scritto:
PS:grazie tante per la guida,ne farò tesoro,ma qualcosa momentaneamente non va,forse il server e down perchè non accenna ad aprirsi,la pagina carica senza risultato,che non sia la mia connessione...In ogni caso salvo il link al sicuro in un bel doc..
Eh, svuotando le cache lo noto anch'io. Pluto da spesso problemi di questo genere da un po' di tempo...
Qua trovi l'originale in inglese:
http://tldp.org/LDP/abs/html/
Ma la sai una cosa,il comando ora funziona con xsargs,ma io ancora non ho capito cosa sia e a cosa serve esattamente questo benedetto xsargs...
xargs legge l'input, lo divide ed esegue una o più volte il comando che gli specifichi usando come argomento una parte di input alla volta. In generale ogni volta che una pipe da problemi è una buona idea fare una prova con xargs.
edit
qua trovi un pdf con la traduzione italiana, non so quanto sia aggiornata.
Re: Eliminazione multipla di file"terminale"
Inviato: giovedì 12 aprile 2012, 18:07
da $nake
Laycastle ha scritto:
$nake ha scritto:
PS:grazie tante per la guida,ne farò tesoro,ma qualcosa momentaneamente non va,forse il server e down perchè non accenna ad aprirsi,la pagina carica senza risultato,che non sia la mia connessione...In ogni caso salvo il link al sicuro in un bel doc..
Eh, svuotando le cache lo noto anch'io. Pluto da spesso problemi di questo genere da un po' di tempo...
Qua trovi l'originale in inglese:
http://tldp.org/LDP/abs/html/
Ma la sai una cosa,il comando ora funziona con xsargs,ma io ancora non ho capito cosa sia e a cosa serve esattamente questo benedetto xsargs...
xargs legge l'input, lo divide ed esegue una o più volte il comando che gli specifichi usando come argomento una parte di input alla volta. In generale ogni volta che una pipe da problemi è una buona idea fare una prova con xargs.
Ottimo andrò a studiarmi il man di xargs,cosi lo comprederò a fondo...
Riguardo al manuale preferisco apettare che i server ritornino up e scaricare il manuale in italiano,io e l'inglese ancora non andiamo proprio daccordo

Comunque ti ringrazio tantissimo ho appreso tanto in qusto post,speriamo di ribeccarci!