Quantcast
Channel: Strg+Shift+R
Viewing all articles
Browse latest Browse all 50

Moving files onto Google Glass

$
0
0


There is no easy way to copy files to Google Glass at the moment. Here is how you can do it using ADB. Start your command promt:

adb shell //to start the shell and navigate through the file structure

Some basic shell commands:
  • ls = show all files in current directory
  • cd abc = Open subdirectory abc in current directory
  • mkdir abc = create directory abc in current directory
  • rm abc = remove file abc in the current directory
  • exit = close the shell 
Prepare the folder where you want to copy the file to using the shell, afterwards exit the shell and use push to copy the file to the new folder:
adb push C:/fileOnDesktop.txt /mnt/sdcard/targetFolderOnGlass

Viewing all articles
Browse latest Browse all 50

Trending Articles