माउंट ड्राइव करने के लिए स्क्रिप्ट - mount-menu.sh
mount-menu.sh
स्क्रिप्ट आप बढ़ते के लिए अनमाउंट कर ड्राइव / विभाजन का चयन करने के लिए अनुमति देता है। स्क्रिप्ट उपयोग को कॉल करने के लिए sudo mount-menu.sh
:। यह स्क्रीन आपके अद्वितीय मशीन वातावरण के अनुरूप दिखाई देती है:
- विभाजन और प्रेस का चयन करने के लिए तीर कुंजियों का उपयोग करें Enter
मेनू आपके टर्मिनल में इस जानकारी को साफ और छोड़ देता है:
=====================================================================
Mount Device: /dev/nvme0n1p10
Mount Name: /mnt/mount-menu.FPRAW
File System: ext4
ID: Ubuntu
RELEASE: 18.04
CODENAME: bionic
DESCRIPTION: Ubuntu 18.04.1 LTS
Size Used Avail Use%
27G 7.9G 18G 32%
अब आप उपयोग कर सकते हैं: cd /mnt/mount-menu.FPRAW
अपने बाहरी ड्राइव के विभाजन का उपयोग करने के लिए।
तब आप cd home/YOUR_NAME
दिमाग का इस्तेमाल कर सकते हैं कि वह /
सामने न रखे home
। क्या आपको इसका उपयोग cd /home
अपने बूट ड्राइव में और बाहरी ड्राइव से बाहर ले जाने के लिए करना चाहिए ।
mount-menu.sh
स्क्रिप्ट सामग्री
स्क्रिप्ट बनाने के लिए टर्मिनल खोलें और टाइप करें:
sudo -H gedit /usr/local/bin/mount-menu.sh
फिर नीचे दिए गए कोड को कॉपी करके पेस्ट करें gedit
। फ़ाइल सहेजें और बाहर निकलें gedit
।
अब फ़ाइल को निष्पादन योग्य के रूप में चिह्नित करें:
sudo chmod a+x /usr/local/bin/mount-menu.sh
यहाँ कॉपी करने की स्क्रिप्ट है:
#!/bin/bash
# NAME: mount-menu.sh
# PATH: /usr/local/bin
# DESC: Select unmounted partition for mounting
# DATE: May 9, 2018. Modified May 11, 2018.
# $TERM variable may be missing when called via desktop shortcut
CurrentTERM=$(env | grep TERM)
if [[ $CurrentTERM == "" ]] ; then
notify-send --urgency=critical \
"$0 cannot be run from GUI without TERM environment variable."
exit 1
fi
# Must run as root
if [[ $(id -u) -ne 0 ]] ; then echo "Usage: sudo $0" ; exit 1 ; fi
#
# Create unqique temporary file names
#
tmpMenu=$(mktemp /tmp/mount-menu.XXXXX) # Menu list
tmpInfo=$(mktemp /tmp/mount-menu.XXXXX) # Mount Parition Info
tmpWork=$(mktemp /tmp/mount-menu.XXXXX) # Work file
MountName=$(mktemp -d /mnt/mount-menu.XXXXX) # Mount directory name
#
# Function Cleanup () Removes temporary files
#
CleanUp () {
[[ -f $tmpMenu ]] && rm -f $tmpMenu # If temporary files created
[[ -f $tmpInfo ]] && rm -f $tmpInfo # at various program stages
[[ -f $tmpWork ]] && rm -f $tmpWork # remove them before exiting.
}
#
# Mainline
#
lsblk -o NAME,FSTYPE,LABEL,SIZE,MOUNTPOINT > $tmpMenu
i=0
SPACES=' '
DoHeading=true
AllPartsArr=() # All partitions.
# Build whiptail menu tags ($i) and text ($Line) into array
while read -r Line; do
if [[ $DoHeading == true ]] ; then
DoHeading=false # First line is the heading.
MenuText="$Line" # Heading for whiptail.
FSTYPE_col="${Line%%FSTYPE*}"
FSTYPE_col="${#FSTYPE_col}" # FS Type, ie `ext4`, `ntfs`, etc.
MOUNTPOINT_col="${Line%%MOUNTPOINT*}"
MOUNTPOINT_col="${#MOUNTPOINT_col}" # Required to ensure not mounted.
continue
fi
Line="$Line$SPACES" # Pad extra white space.
Line=${Line:0:74} # Truncate to 74 chars for menu.
AllPartsArr+=($i "$Line") # Menu array entry = Tag# + Text.
(( i++ ))
done < $tmpMenu # Read next "lsblk" line.
#
# Display whiptail menu in while loop until no errors, or escape,
# or valid partion selection .
#
DefaultItem=0
while true ; do
# Call whiptail in loop to paint menu and get user selection
Choice=$(whiptail \
--title "Use arrow, page, home & end keys. Tab toggle option" \
--backtitle "Mount Partition" \
--ok-button "Select unmounted partition" \
--cancel-button "Exit" \
--notags \
--default-item "$DefaultItem" \
--menu "$MenuText" 24 80 16 \
"${AllPartsArr[@]}" \
2>&1 >/dev/tty)
clear # Clear screen.
if [[ $Choice == "" ]]; then # Escape or dialog "Exit".
CleanUp
exit 1;
fi
DefaultItem=$Choice # whiptail start option.
ArrNdx=$(( $Choice * 2 + 1)) # Calculate array offset.
Line="${AllPartsArr[$ArrNdx]}" # Array entry into $Line.
# Validation - Don't wipe out Windows or Ubuntu 16.04:
# - Partition must be ext4 and cannot be mounted.
if [[ "${Line:MOUNTPOINT_col:4}" != " " ]] ; then
echo "Partition is already mounted."
read -p "Press <Enter> to continue"
continue
fi
# Build "/dev/Xxxxx" FS name from "├─Xxxxx" menu line
MountDev="${Line%% *}"
MountDev=/dev/"${MountDev:2:999}"
# Build File System Type
MountType="${Line:FSTYPE_col:999}"
MountType="${MountType%% *}"
break # Validated: Break menu loop.
done # Loop while errors.
#
# Mount partition
#
echo ""
echo "====================================================================="
mount -t auto $MountDev $MountName
# Display partition information.
echo "Mount Device=$MountDev" > $tmpInfo
echo "Mount Name=$MountName" >> $tmpInfo
echo "File System=$MountType" >> $tmpInfo
# Build Mount information (the partition selected for cloning to)
LineCnt=$(ls $MountName | wc -l)
if (( LineCnt > 2 )) ; then
# More than /Lost+Found exist so it's not an empty partition.
if [[ -f $MountName/etc/lsb-release ]] ; then
cat $MountName/etc/lsb-release >> $tmpInfo
else
echo "No LSB-Release file on Partition." >> $tmpInfo
fi
else
echo "Partition appears empty" >> $tmpInfo
echo "/Lost+Found normal in empty partition" >> $tmpInfo
echo "First two files/directories below:" >> $tmpInfo
ls $MountName | head -n2 >> $tmpInfo
fi
sed -i 's/DISTRIB_//g' $tmpInfo # Remove DISTRIB_ prefix.
sed -i 's/=/:=/g' $tmpInfo # Change "=" to ":="
sed -i 's/"//g' $tmpInfo # Remove " around "Ubuntu 16.04...".
# Align columns from "Xxxx:=Yyyy" to "Xxxx: Yyyy"
cat $tmpInfo | column -t -s '=' > $tmpWork
cat $tmpWork > $tmpInfo
# Mount device free bytes
df -h --output=size,used,avail,pcent "$MountDev" >> $tmpInfo
# Display partition information.
cat $tmpInfo
CleanUp # Remove temporary files
exit 0
umount-menu.sh
ड्राइव / विभाजन को अनमाउंट करने के लिए
स्क्रिप्ट के लिए फ़ाइल निर्माण / बिट मार्किंग प्रक्रिया को निष्पादित करें umount-menu.sh
। यह स्क्रिप्ट केवल उन ड्राइव / विभाजन को अनमाउंट करती है जो इसके द्वारा माउंट किए गए थे mount-menu.sh
। यह एक ही चयन मेनू है और संदेश के साथ पूरा होता है:
=====================================================================
/dev/nvme0n1p10 mounted on /mnt/mount-menu.FPRAW unmounted.
स्क्रिप्ट उपयोग को कॉल करने के लिए: sudo umount-menu.sh
umount-menu.sh
बैश स्क्रिप्ट:
!/bin/bash
# NAME: umount-menu.sh
# PATH: /usr/local/bin
# DESC: Select mounted partition for unmounting
# DATE: May 10, 2018. Modified May 11, 2018.
# $TERM variable may be missing when called via desktop shortcut
CurrentTERM=$(env | grep TERM)
if [[ $CurrentTERM == "" ]] ; then
notify-send --urgency=critical \
"$0 cannot be run from GUI without TERM environment variable."
exit 1
fi
# Must run as root
if [[ $(id -u) -ne 0 ]] ; then echo "Usage: sudo $0" ; exit 1 ; fi
#
# Create unqique temporary file names
#
tmpMenu=$(mktemp /mnt/mount-menu.XXXXX) # Menu list
#
# Function Cleanup () Removes temporary files
#
CleanUp () {
[[ -f "$tmpMenu" ]] && rm -f "$tmpMenu" # at various program stages
}
#
# Mainline
#
lsblk -o NAME,FSTYPE,LABEL,SIZE,MOUNTPOINT > "$tmpMenu"
i=0
SPACES=' '
DoHeading=true
AllPartsArr=() # All partitions.
# Build whiptail menu tags ($i) and text ($Line) into array
while read -r Line; do
if [[ $DoHeading == true ]] ; then
DoHeading=false # First line is the heading.
MenuText="$Line" # Heading for whiptail.
MOUNTPOINT_col="${Line%%MOUNTPOINT*}"
MOUNTPOINT_col="${#MOUNTPOINT_col}" # Required to ensure mounted.
continue
fi
Line="$Line$SPACES" # Pad extra white space.
Line=${Line:0:74} # Truncate to 74 chars for menu.
AllPartsArr+=($i "$Line") # Menu array entry = Tag# + Text.
(( i++ ))
done < "$tmpMenu" # Read next "lsblk" line.
#
# Display whiptail menu in while loop until no errors, or escape,
# or valid partion selection .
#
DefaultItem=0
while true ; do
# Call whiptail in loop to paint menu and get user selection
Choice=$(whiptail \
--title "Use arrow, page, home & end keys. Tab toggle option" \
--backtitle "Mount Partition" \
--ok-button "Select unmounted partition" \
--cancel-button "Exit" \
--notags \
--default-item "$DefaultItem" \
--menu "$MenuText" 24 80 16 \
"${AllPartsArr[@]}" \
2>&1 >/dev/tty)
clear # Clear screen.
if [[ $Choice == "" ]]; then # Escape or dialog "Exit".
CleanUp
exit 1;
fi
DefaultItem=$Choice # whiptail start option.
ArrNdx=$(( $Choice * 2 + 1)) # Calculate array offset.
Line="${AllPartsArr[$ArrNdx]}" # Array entry into $Line.
if [[ "${Line:MOUNTPOINT_col:15}" != "/mnt/mount-menu" ]] ; then
echo "Only Partitions mounted by mount-menu.sh can be unounted."
read -p "Press <Enter> to continue"
continue
fi
# Build "/dev/Xxxxx" FS name from "├─Xxxxx" menu line
MountDev="${Line%% *}"
MountDev=/dev/"${MountDev:2:999}"
# Build Mount Name
MountName="${Line:MOUNTPOINT_col:999}"
MountName="${MountName%% *}"
break # Validated: Break menu loop.
done # Loop while errors.
#
# Unmount partition
#
echo ""
echo "====================================================================="
umount "$MountName" -l # Unmount the clone
rm -d "$MountName" # Remove clone directory
echo $(tput bold) # Set to bold text
echo $MountDev mounted on $MountName unmounted.
echo $(tput sgr0) # Reset to normal text
CleanUp # Remove temporary files
exit 0
/media/{disk}
, Thunar या Nautilus क्या देता है से अलग है। हालाँकि, जोudisksctl
आदेश दिया गयाudisks2
है, वह मुझे लगता है कि मुझे क्या चाहिए।