| Summary: | Plasmashell Crash when changing several partitions with parted and formatting them | ||
|---|---|---|---|
| Product: | [Plasma] plasmashell | Reporter: | Thomas Weissel <xapient> |
| Component: | Disks & Devices widget | Assignee: | Plasma Bugs List <plasma-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 5.8.4 | ||
| Target Milestone: | 1.0 | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
*** This bug has been marked as a duplicate of bug 345871 *** |
every time i run a script that formats my usb flashdrives with 3 partitions (fat32, fat32, ext4) plasmashell crashes. reproducable : 99% this is the script: echo "# PARTITIONING DEVICE #" LIFESIZEEND=$(( $WINSHARESIZE + $LIFESIZE )) sudo partprobe $SDX sudo parted -s $SDX mktable MSDOS sleep 1 sudo partprobe $SDX sudo parted -s $SDX mkpart primary fat32 0% $WINSHARESIZE sudo parted -s $SDX mkpart primary fat32 $WINSHARESIZE $LIFESIZEEND sudo parted -s $SDX mkpart primary ext4 $LIFESIZEEND 100% echo "# setting boot flag to second partition #" sudo parted -s $SDX set 2 boot on sudo parted -s $SDX print echo "" echo " WAITING FOR DEVICE TO SETTLE ...... " echo "" sleep 4 sudo partprobe $SDX echo "" echo "# CREATING FILESYSTEMS #" echo "" sudo mkfs.vfat -F 32 -n WINSHARE ${SDX}1 sleep 1 sudo mkfs.vfat -F 32 -n LIFECLIENT ${SDX}2 sleep 1 echo "mkfs.ext4" sudo mkfs.ext4 -L casper-rw ${SDX}3 > /dev/null 2>&1 #hide output sleep 1 #sudo mkfs.ext2 -b 4096 -L home-rw ${SDX}3 sudo partprobe echo "# Finished Partitioning #"