من dvdش رو دوباره گذاشتم. خودش شناخت (اگه منظور از شناختن همین اضافه کردن آیکون درایو تو دستکتاپ باشه)
autorun یا چیزی مثل این که اجرا نشد ولی خودم یه فایلی بود به اسم cdromupgrade که زدم تو ترمینال اجراش کنه. بعد از اون منوی add & remove (همون گزینه آخر از منوی بالا سمت چپ) رو زدم.
همون پنجرهای که برای نصب کردن برنامههای جدید میاد باز شد ولی هر برنامهای رو که میزدم یه چیزی میومد 7 یا 8 تا از 15 یا 16 تا پر میشد بعد همونجا گیر میکرد و ادامه نمیداد.
اگه این فایل cdromupgrade رو به جای اجرا میزاشتی نمایش بده توش اینا نوشته شده بود:
#!/bin/sh
#
# "cdromupgrade" is a shell script wrapper around the dist-upgrader
# to make it possible to put it onto the top-level dir of a CD and
# run it from there
#
# Not that useful unfortunately when the CD is mounted "noexec",
# but useful for the notification-daemon that will just run it
# and be done with it
#
# WARNING: make sure to call it with a absolute path!
# (e.g. /cdrom/cdromugprade)
CODENAME=edgy
UPGRADER_DIR=dists/stable/main/dist-upgrader/binary-all/
cddirname=${0%\/*}
fullpath=$cddirname/$UPGRADER_DIR
# extrace the tar to a TMPDIR and run it from there
if [ ! -f $fullpath/$CODENAME.tar.gz ]; then
echo "Could not find the upgrade application archive, exiting"
exit 1
fi
TMPDIR=$(mktemp -d)
cd $TMPDIR
tar xzf $fullpath/$CODENAME.tar.gz
if [ ! -x $TMPDIR/$CODENAME ]; then
echo "Could not find the upgrade application in the archive, exiting"
exit 1
fi
gksu -- $TMPDIR/$CODENAME --cdrom $cddirname
(این کدها رو چهجوری میشه ltr کرد؟) با تشکر از آقای ریاضی