जवाबों:
winetricks
स्टॉक उबंटू इंस्टॉलेशन के साथ आने वाला संस्करण अक्सर काफी पुराना होता है, यहां तक कि अधिक आधुनिक पीपीए से उपलब्ध संस्करण भी थोड़ा पीछे रह सकता है। यह एक महान विचार है और winetricks
मैन्युअल रूप से अपडेट करने के लिए एक बहुत ही सुरक्षित है , आपकी मुख्य स्थापना से स्वतंत्र है Wine
, यह कुछ सरल चरणों में किया जा सकता है:
1. नवीनतम संस्करण की जाँच करें, पुराने संस्करण को हटा दें:
पहले यह देखने के लिए जांचें कि इस आसान वन-लाइनर के साथ अपस्ट्रीम से उपलब्ध नवीनतम संस्करण क्या है :
curl --silent --show-error \
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr - \
| grep ^WINETRICKS_VERSION | cut -d '=' -f 2
फिर अगर यह आपके खुद के इंस्टॉल किए गए संस्करण को ट्रम्प करता है ( कमांड लाइन से अपने संस्करण को देखने के लिए winetricks --version
) अपने वर्तमान में स्थापित संस्करण को हटा दें:
sudo apt-get remove winetricks
2. नवीनतम संस्करण स्थापित करें:
फिर बहुत नवीनतम संस्करण डाउनलोड और इंस्टॉल करें:
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
chmod +x winetricks
sudo mv -v winetricks /usr/local/bin
अपने स्वयं के सिस्टम पर प्रदर्शित होने के बाद नवीनतम संस्करण का परीक्षण किया जा सकता है:
andrew@ilium~$ winetricks --version
20190912-next - sha256sum: 4b994d981a7b6abe1f0edb6a57d8c15b1f060cf08de8819f9147e31ababf35a6
andrew@ilium~$
3. नए सिंटैक्स के लिए कुछ अतिरिक्त और जाँच जोड़ें:
यह सुनिश्चित करने के लिए भी एक अच्छा विचार हो सकता है कि आपके पास winetricks
चलाने के लिए कुछ आवश्यक 'सहायक' अनुप्रयोग हैं, हालांकि इनमें से अधिकांश को आपकी वाइन की प्रतिलिपि के साथ पहले ही स्थापित किया जाना चाहिए :
sudo apt-get install cabextract p7zip unrar unzip wget zenity
फिर सही उपयोग की जाँच करें, जो आपके पुराने संस्करण से बदल सकता था:
andrew@illium~$ winetricks -h
Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
Executes given verbs. Each verb installs an application or changes a setting.
Options:
--country=CC Set country code to CC and don't detect your IP address
--force Don't check whether packages were already installed
--gui Show gui diagnostics even when driven by commandline
--isolate Install each app or game in its own bottle (WINEPREFIX)
--self-update Update this application to the last version
--update-rollback Rollback the last self update
-k, --keep_isos Cache isos (allows later installation without disc)
--no-clean Don't delete temp directories (useful during debugging)
-q, --unattended Don't ask any questions, just install automatically
-r, --ddrescue Retry hard when caching scratched discs
--showbroken Even show verbs that are currently broken in wine
-t --torify Run downloads under torify, if available
--verify Run (automated) GUI tests for verbs, if available
-v, --verbose Echo all commands as they are executed
-h, --help Display this message and exit
-V, --version Display version and exit
Commands:
list list categories
list-all list all categories and their verbs
apps list list verbs in category 'applications'
benchmarks list list verbs in category 'benchmarks'
dlls list list verbs in category 'dlls'
games list list verbs in category 'games'
settings list list verbs in category 'settings'
list-cached list cached-and-ready-to-install verbs
list-download list verbs which download automatically
list-manual-download list verbs which download with some help from the user
list-installed list already-installed verbs
prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
andrew@illium~$
4. इन चरणों को सुरक्षित रूप से उल्टा करें:
यदि किसी कारण से आप अपने पुराने रिपॉजिटरी संस्करण में वापस जाना चाहते हैं, तो आप बस निम्नलिखित चला सकते हैं:
sudo rm /usr/local/bin/winetricks
sudo apt-get install winetricks
और जैसा होगा वैसा ही होगा।
संदर्भ:
/usr/local/bin
या यहाँ तक कि ~/bin
निश्चित रूप /usr/bin
से काम करेगा।
winetricks
वास्तव में 3 साल का नया साल (अगस्त 2014 के बजाय अगस्त 2017)! → यह सलाह अभी भी महान और मान्य है।
डिस्को और ईऑन में उपलब्ध विंडेट्रिक संस्करण स्वयं को अपडेट करने में सक्षम हैं [1] ।
यदि आप 19.04 या बाद में उपयोग करते हैं, तो बस चलाएं:
sudo apt install winetricks
sudo winetricks --self-update
यदि आप उबंटू के पुराने संस्करण पर हैं, तो आप यहाँ .deb पैकेज प्राप्त कर सकते हैं:
https://packages.ubuntu.com/eoan/all/winetricks/download
sudo mv -v winetricks /usr/bin
इसके बजाय का उपयोग करें ?