How To: Mount iPhone 7 In Antergos Gnome - My First Bash Script
Channel:
Subscribers:
22,900
Published on ● Video Link: https://www.youtube.com/watch?v=7WZ9_0WxkVo
In this video I create my first script to mount and unmount an iPhone system in your Files file management. This will allow you to search for movies and pictures on your phone without the need for using another tool.
You can also do these steps manually or bind this bash script to a shortcut key.
Steps:
1. Install ifuse
2. In terminal $ mkdir ~/iPhone
3. Gedit iphone
4. Paste in script and save
5. in terminal $ chmod 755 iphone
6. in terminal $ ./iphone
#!/bin/bash
dmesg | grep -i iphone
read -p "Is iPhone Connected? (y/n) " RESP
if [ "$RESP" = "y" ]; then
echo "Glad to hear it"
ifuse ~/iPhone
else
fusermount -u /home/dasgeek/iPhone
echo "Try plugging it in again"
fi
Other Videos By DASGeek
Tags:
fuse
ifuse
iphone
linux
mount
file system
antergos
apple
ipod
gnome
script
bash
shotwell
dmesg