- bash: rvictl: command not found, Mac book pro OS X 10.7.5 & Xcode 4.6

I want to debug a network error with my application, I found a way to create rvi for tracing, but I can't even complete step 1:

rvictl -s -bash: rvictl: command not found

what should I do? I follow the site: https://developer.apple.com/library/mac/qa/qa1176/_index.html

Help! thank

+6
networking macos
Feb 04 '14 at 17:39
source share
4 answers

Mavericks onwards: You need to install Xcode from the App Store, and then you need to run Xcode once and accept the installation of additional tools. Reboot the terminal. Good to go.

+11
Oct 27 '14 at 23:09
source share

I found a solution here .
Thus, the link above explains that the problem may be related to installing Xcode without installing additional components.
Check if rvictl is installed, look for the /usr/bin/rvictl . If it does not exist, then rvictl is not installed. To install it, install the following package:

  • Xcode.app/Contents/Resources/Packages/MobileDevice.pkg
  • Xcode.app/Contents/Resources/Packages/MobileDeviceDevelopment.pkg

Restart your terminal and ... Voila! it should work now

+1
Jul 20 '18 at 13:24
source share

You need to install the command line tools for Xcode available here:
https://developer.apple.com/downloads/index.action?name=for%20Xcode%20-#
This includes the rvictl program.

0
Feb 28 '14 at 21:44
source share

When you say: command line tools for 10.10 do not seem to include the rvictl program - I get an error: command not found

You need to see the comment above: Mavericks and beyond: you need to install Xcode from the App Store, and then you need to run Xcode once and accept the installation of additional tools. Reboot the terminal.

Then will appear.

0
Oct 06 '16 at 16:55
source share



All Articles