The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,854 other subscribers

Archive for the ‘Mac OS X / OS X / MacOS’ Category

Mac/Android: Transfer files through USB (via: Nexus Help)

Posted by jpluimers on 2014/03/31

Too bad a Mac – no matter the OS X version – does not interoperate out of the box with Android like a Windows machine does.

On a Mac you need Android File Transfer to access the Android storage from your Mac.

This transfer app is very fast though and is way easier to use than doubleTwist.

From the Nexus help:

Mac OS transfer

  1. Install Android File Transfer from www.android.com/filetransfer, and follow the instructions there. (If you are using Android File Transfer for the first time, double-click it to open it. After the first connection, it opens automatically whenever you connect.)
  2. Connect your phone to your computer with a USB cable. Android File Transfer starts, if it’s not already running, and opens a window that displays the contents of your phone, along with storage space details at the bottom of the window.
  3. Work with this window much as you do in the Finder window: open and close folders, create new folders, and drag files to or from it and other Finder windows.
  4. Disconnect the USB cable when you finish.

–jeroen

via: Transfer files through USB – Nexus Help.

Posted in Android Devices, Apple, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, OS X 10.8 Mountain Lion, Power User | Leave a Comment »

smallestdotnet.com via: shanselman/SmallestDotNet (thanks @shanselman)

Posted by jpluimers on 2014/03/29

Brilliant piece of open source:

SmallestDotNetSmallestDotNet.com is a single page site that does one thing. It tells you the smallest, easiest download you’d need to get the .NET Framework on your system.

Even on Mac OS X it is helpful and recommends Mono and on iOS it recommends looking at MonoTouch.

Thanks Scott Hanselman for making this available!

–jeroen

via:

Posted in .NET, .NET 1.x, .NET 2.0, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, Apple, Development, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, OS X 10.8 Mountain Lion, OS X 10.9 Mavericks, Power User, Software Development, Windows, Windows 7, Windows 8, Windows 8.1, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Vista, Windows XP | Tagged: , | Leave a Comment »

osx – Midnight Commander (MC) installer for Mac OS X – Super User

Posted by jpluimers on 2014/03/28

Must have on a Mac when you use terminal; either installation way is fine. I got mc from louise, as that was the first one I found.

osx – Midnight Commander (MC) installer for Mac OS X – Super User.

–jeroen

Posted in Apple, Linux, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, OS X 10.8 Mountain Lion, Power User | Leave a Comment »

*nix: recursively listing “hidden” files from the current directory

Posted by jpluimers on 2014/03/25

As a follow up on my recent rsync on ESXi 5.1 post, as – when rsync in ESXi terminates the hard way because of a lost SSH connection – rsync can leave “hidden” files behind.

A small script that recursively shows the hidden files (those starting with a dot) starting from the current directory:

find . -iname ".*"

More of those (including deleting them, filtering for only files or only directories, etc) are at Linux / UNIX: Bash Find And Delete All Hidden Files Directories.

Note: don’t try to outsmart using something like piping through grep "\/\." as that will also match files who’s parent directories are hidden.

–jeroen

via:

Posted in *nix, Apple, bash, Development, ESXi4, ESXi5, ESXi5.1, ESXi5.5, Linux, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, OS X 10.8 Mountain Lion, OS X 10.9 Mavericks, Power User, Scripting, Software Development, SuSE Linux, VMware, VMware ESXi | Tagged: , | Leave a Comment »

How to copy a file with I/O errors? (via: Not a complete failure » Blog Archive)

Posted by jpluimers on 2014/03/24

Blast from the past, and happy I found back the original blog that pointed me to this: Not a complete failure » Blog Archive » How to copy a file with I/O errors?.

A long while ago, I helped out a friend with a HDD that was partially working. He neede the bits of a file that had become unreadable by regular means.

dd to the rescue: it takes a lot longer, but gets the job done eventually. Eventually can be T+eternity.

Note that you always should copy such a file to another drive, like described in the above blog.

Something like this (the parameters are explained at the dd man page):

dd if=/mounting-path/directory-path/damaged.mp4 of=resurrected.mp4 conv=noerror,sync

Usually for creating disk images, dd works on *n*x, Mac OS X, Windows with for instance Cygwin, ESXi, etc.

See also: linux – Rescuing a hdd with bad sectors: dd vs gddrescue – Super User.

–jeroen

via: Not a complete failure » Blog Archive » How to copy a file with I/O errors?.

Posted in *nix, Apple, Cygwin, ESXi4, ESXi5, ESXi5.1, ESXi5.5, Linux, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, OS X 10.8 Mountain Lion, OS X 10.9 Mavericks, Power User, SuSE Linux, VMware, VMware ESXi | Leave a Comment »

Apple Tips: Setting-up a new Mac from an old one or its Backups Transferring files from one User Account to another

Posted by jpluimers on 2014/03/24

Time consuming, but works:

Apple Tips: Setting-up a new Mac from an old one or its Backups Transferring files from one User Account to another.

–jeroen

Posted in Apple, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, MacBook, OS X 10.8 Mountain Lion, Power User | Leave a Comment »

Make terminal window open with fixed size and position – Mac-Forums Discussions for Apple Products & Services

Posted by jpluimers on 2014/03/17

On the Mac terminal window:

Size yes, position no.

Size can be set in Preferences>Settings>ThemeYouUse>Window>Window Size

Take a look at this for the fold/unfold,

TotalTerminal is a system-wide terminal accessible via a hot-key

–jeroen

via: Make terminal window open with fixed size and position – Mac-Forums Discussions for Apple Products & Services.

Posted in Apple, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, OS X 10.8 Mountain Lion, Power User | Leave a Comment »

Interesting: HotspotShield (VPN for iPhone/Mac/Windows to Access Blocked Sites; Surf Anonymously)

Posted by jpluimers on 2014/03/14

Interesting: HotspotShield VPN to surf from a USA IP address.

There is a free version with ads, and a payed version without ads.

Probably more services like this exist, but this has been working for me.

Yup there are:

–jeroen

via: Download Free VPN for iPhone, Mac and Windows to Access Blocked Sites & Surf Anonymously.

Posted in Apple, iOS, iPad, iPhone, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.4 Tiger, Mac OS X 10.5 Leopard, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, OS X 10.8 Mountain Lion, Power User, Windows, Windows 7, Windows 8, Windows Vista, Windows XP | Leave a Comment »

NTFS Driver for Mac OS | Seagate

Posted by jpluimers on 2014/03/06

Consolidation of HDD manufacturers (image from WikiMedia)

Consolidation of HDD manufacturers (image from WikiMedia)

Earlier this year I wrote about Accessing Mac Hard Drives from Windows 7/8: Boot Camp Support Software 5.0.5033 and mentioned that there are also a few solutions for writing NTFS volumes from Mac OS X.

Thanks to dhardy03, I learned that Seagate now provides NTFS drivers for Mac OS X for Free. The installer name indicates it is an OEM version of the Paragon NTFS drivers for Mac OS X.

I’m not sure yet if it works only on Seagate drives, but since the only other HDD manufacturers left are Toshiba and Western Digital (Toshiba is a much smaller HDD manufacturer than WD and SD), it is a substantial part of the market.

I might try NTFS-3G as well, but that hasn’t been updated for a while and has been replaced by the commercial Tuxera product.

–jeroen

via:

Posted in Apple, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, OS X 10.8 Mountain Lion, OS X 10.9 Mavericks, Power User, Uncategorized | Tagged: , , | Leave a Comment »

Quick Tip: Automating your Mac’s wifi power (on off through script) via: BrettTerpstra.com

Posted by jpluimers on 2014/03/04

Interesting commands around networksetup -setairportpower en0 : power off and on your WiFi.

–jeroen

via: [Wayback/Archive] Quick Tip: Automating your Mac’s wifi power – BrettTerpstra.com.

Posted in Apple, Hardware, Mac, Mac OS X / OS X / MacOS, Mac OS X 10.6 Snow Leopard, Mac OS X 10.7 Lion, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, Network-and-equipment, OS X 10.8 Mountain Lion, OS X 10.9 Mavericks, Power User, WiFi | Leave a Comment »