• Benvenuto su Altrove Consulting Forum.
 

News:

www.altrove.info ICT a 360 gradi - Contattaci per mettere in buone mani la tua infrastruttura

Menu principale

Messaggi recenti

#51
Notizie e Link Interessanti / Re: errore dopo download Itune...
Ultimo messaggio di Max Brezzi - Lunedì, 15 Settembre 2014, 13:30:31 PM
This fixes it.

You are basically removing ( or renaming as I did) the old kext and then rerunning the iTunes installer which will then properly install the kext.

http://blog.iphoting.com/blog/2012/09/04/fixing-broken-iphone-usb-tethering-on-os-x

To fix the faulty AppleUSBEthernetHost.kext, it needs to be reinstalled from the iTunes package. Follow the steps below:
Unplug your iPhone from the computer.
Download the iTunes installer (http://www.apple.com/itunes/download/).
Remove the old kernel extension:

$ sudo rm -Rf /System/Library/Extensions/AppleUSBEthernetHost.kext

Run the iTunes installer and let it finish.

Load the updated kernel extension:

$ sudo kextload /System/Library/Extensions/AppleUSBEthernetHost.kext
#52
Notizie e Link Interessanti / errore dopo download Itunes /s...
Ultimo messaggio di Max Brezzi - Lunedì, 15 Settembre 2014, 13:20:24 PM
e' una "svista" di Apple nell'estensione "AppleUSBEthernetHost.kext" installata con l'aggiornamento di iTunes.

O la sostituisci con la versione vecchia presa da un backup, o la correggi.

Personalmente, sono entrato in /System/Library/Extensions/AppleUSBEthernetHost.kext/Contents e ho eliminato tre link simbolici "farlocchi":
CodeDirectory
CodeRequirements
CodeSignature

L'istruzione da terminale è:

sudo rm /System/Library/Extensions/AppleUSBEthernetHost.kext/Contents/Code*

Oppure puoi divertirti a farlo dal Finder.
#54
Notizie e Link Interessanti / Procedura di Attivazione Windo...
Ultimo messaggio di Max Brezzi - Lunedì, 28 Luglio 2014, 18:22:01 PM
x attivare windows (in particolare macchine virtuali che non danno altri sistemi di attivazione) seguire questa procedura:


Apri il prompt dei comandi con diritti amministrativi

slmgr -upk   (questo rimuove il vecchio codice)

slmgr -ipk xxxx-xxxx-xxxx-xxxx-xxxx  (questo inserisce il nuovo codice)

a questo punto si riesce ad attivare windows.
#55
Notizie e Link Interessanti / Come rimuovere adware e malewa...
Ultimo messaggio di Max Brezzi - Lunedì, 14 Luglio 2014, 13:20:56 PM
http://www.adwaremedic.com/index.php

per scaricarlo: https://it.malwarebytes.com/antimalware/mac/




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

Per rimuovere manualmente....


esempio:

You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
 
Back up all data.
Triple-click anywhere in the line below on this page to select it:
/Library/Application Support/VSearch
Right-click or control-click the line and select
Services ▹ Reveal in Finder (or just Reveal)
from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
Repeat with each of these lines:
/Library/LaunchAgents/com.vsearch.agent.plist
/Library/LaunchDaemons/com.vsearch.daemon.plist
/Library/LaunchDaemons/com.vsearch.helper.plist
/Library/LaunchDaemons/Jack.plist
/Library/PrivilegedHelperTools/Jack
/System/Library/Frameworks/VSearch.framework
Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
From the Safari menu bar, select
Safari ▹ Preferences... ▹ Extensions
Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
*If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
Go ▹ Go to Folder...
from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
#56
Notizie e Link Interessanti / Come convertire immagine .ISO ...
Ultimo messaggio di Max Brezzi - Lunedì, 12 Maggio 2014, 00:15:12 AM
http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx

------


How to create a bootable USB stick on OS X


We would encourage Mac users to download Ubuntu Desktop Edition by burning a CD. But if you prefer to use a USB stick, please follow the instructions below.

Note: this procedure requires that you create an .img file from the .iso file you download. It will also change the filesystem that is on the USB stick to make it bootable, so backup all data before continuing.

Tip: Drag and drop a file from Finder to Terminal to 'paste' the full path without risking typing errors.

1
Download Ubuntu Desktop

2
Open the Terminal (in /Applications/Utilities/ or query Terminal in Spotlight).

3
Convert the .iso file to .img using the convert option of hdiutil (e.g.,hdiutil convert -format UDRW -o ~/path/to/target.img ~/path/to/ubuntu.iso)

Note: OS X tends to put the .dmg ending on the output file automatically.

4
Run diskutil list to get the current list of devices.

5
Insert your flash media.

6
Run diskutil list again and determine the device node assigned to your flash media (e.g. /dev/disk2).

7
Run diskutil unmountDisk /dev/diskN (replace N with the disk number from the last command; in the previous example, N would be 2).

8
Execute sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m (replace /path/to/downloaded.img with the path where the image file is located; for example, ./ubuntu.imgor ./ubuntu.dmg).

Using /dev/rdisk instead of /dev/disk may be faster
If you see the error dd: Invalid number '1m', you are using GNU dd. Use the same command but replace bs=1m with bs=1M
If you see the error dd: /dev/diskN: Resource busy, make sure the disk is not in use. Start the 'Disk Utility.app' and unmount (don't eject) the drive

9
Run diskutil eject /dev/diskN and remove your flash media when the command completes.

10
Restart your Mac and press alt/option key while the Mac is restarting to choose the USB stick.
#58
Notizie e Link Interessanti / File o cartelle Bloccati (con ...
Ultimo messaggio di Max Brezzi - Lunedì, 02 Dicembre 2013, 19:11:01 PM
Può capitare che, usando Mac OS X, di incontrare (o di arrivare ad avere) file misteriosamente protetti, bloccati, con un lucchetto sull'icona, file di cui sembra non esistere assolutamente modo di cancellarli.

Così, quando un file è "locked" (bloccato) in OS X, è perchè è attivo quello che nei sistemi *nix si chiama "flag". In questi casi, il flag è "uchg", che significa che nessun utente, nè amministrator, può alterare in alcun modo il file (o la directory) fino a quando il file non viene sbloccato, semplicemente rimuovendo il flag.

Per rimuovere questi flag, ecco che viene in aiuto il comando *nix chflags.


Lo script seguente, per esempio, sblocca tutti i file presenti nella home directory dell'utente che la esegue:

sudo chflags -R nouchg ~/


Spiegazione del comando chflags

sudo permette di eseguire il comando chflags come root, amministratore (probabilmente vi verrà chiesto di inserire la password se è in corso la prima esecuzione del terminale).

-R permette al comando chflags di passare, ricorsivamente, tutte le cartelle e i documenti. Attenzione, la lettera maiuscola è importante! Per cambiare i permessi ad un singolo documento, potete rimuovere il parametro -R.

nouchg è la sintassi che permette di rimuovere il flag uchg. Così come l'uchg, tutti i flag possono essere rimossi anteponendo al loro nome un "no".

L'ultimo parametro dell'esempio (~/) che indica la personal directory dell'utente, può essere chiaramente cambiata, sostituendolo con il percorso al file che preferite. Al percorso si possono applicare i normali operatori, come $ e *.
#59
Notizie e Link Interessanti / Quick Look (Anteprima) in OSX ...
Ultimo messaggio di Max Brezzi - Mercoledì, 20 Novembre 2013, 01:18:46 AM
http://reviews.cnet.com/8301-13727_7-57355404-263/fixing-quick-look-issues-in-os-x/



If you do have a Quick Look plug-in that should be able to read your document type and you still can't create a preview of the document, or if the preview appears garbled, then it is likely that the plug-in is not loaded correctly or the Quick Look server cache is corrupted and needs to be rebuilt. First try running a permissions fix on the boot drive using Disk Utility to ensure that the Quick Look plug-ins and other files the Quick Look server needs are properly accessible, and then force Quick Look to reload the plug-ins and its cache by running the following commands in the Terminal:
qlmanage -r
qlmanage -r cache
After this is done, clear out the Quick Look configuration files by going to the /username/Library/Preferences folder (in Lion press the Option key and select "Library" from the Finder's Go menu), and then removing the files called "com.apple.quicklook.ui.helper.plist," "com.apple.quicklookconfig.plist," and "com.apple.QuickLookDaemon.plist." With these files removed and the Quick Look service reloaded, try previewing your documents again.
#60
Notizie e Link Interessanti / Re: RIMUOVERE DUPLICATI DI APP...
Ultimo messaggio di Max Brezzi - Domenica, 17 Novembre 2013, 15:47:40 PM
L'aggiornamento delle applicazioni di Apple o di terze parti sul proprio Mac può comportare la comparsa di voci duplicate all'interno del menu contestuale "Apri con", utilizzato per la scelta dell'applicazione da usare per l'apertura di un file, in alternativa a quella di default

Nonostante il problema sia noto e trattato ripetutamente sul Forum di MacPeer, l'evoluzione degli OS di Apple con frequenza ormai annuale può far nascere il dubbio che le soluzioni indicate in passato non siano più valide per i più recenti sistemi operativi

Tralasciando i software di manutenzione che non sono esenti da possibili "effetti collaterali" e che quindi vanno usati solo in casi specifici, il metodo più rapido e sicuro per la rimozione delle voci duplicate è la ricostruzione del database Launch Services attraverso il Terminale

Dopo aver avviato il Terminale da Finder > Applicazioni > Utility, copiare ed incollare all'interno della finestra uno dei seguenti comandi in base al sistema operativo utilizzato:

per Mac OS Leopard 10.5 – Snow Leopard 10.6 – Lion 10.7 e Mountain Lion 10.8:

/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user

per Mac OS Panther 10.3 – Tiger 10.4:

/System/Library/Frameworks/ApplicationServices.framework/\Frameworks/LaunchServices.framework/Support/lsregister \-kill -r -domain local -domain system -domain user

Premere il tasto Invio ed attendere fino alla comparsa della nuova riga di comando

L'ultima operazione da eseguire per rendere definitiva la modifica è il riavvio del Finder. Se si utilizza un mouse, è necessario cliccare con il tasto destro sull'icona del Finder tenendo premuto il tasto Opzione (Alt). Nel caso si usi un trackpad, cliccare sull'icona del Finder tenendo premuti contemporaneamente i tasti Ctrl ed Opzione (Alt). In entrambi i casi si aprirà un menu dal quale scegliere il comando Riapri