मैं लिनक्स मिंट डेबियन संस्करण (अनिवार्य रूप से डेबियन परीक्षण) और दालचीनी डेस्कटॉप वातावरण चला रहा हूं। हर बार जब मैं लॉन्च करता हूं google-chrome
तो वह डिफ़ॉल्ट ब्राउज़र बनने के लिए कहता है। मैंने इसे सभी तरीकों से ऐसा करने के लिए कहा है जो मैं सोच सकता हूं, लेकिन मुझे अभी भी यह पॉप-अप मिल रहा है:
मैंने क्या कोशिश की है:
- पॉप-अप में "डिफ़ॉल्ट रूप में सेट करें" पर क्लिक करें।
क्रोम को इसकी सेटिंग में डिफ़ॉल्ट बनाना:
डिफ़ॉल्ट के रूप में सेट करने के लिए मेरे डेस्कटॉप वातावरण (दालचीनी) सेटिंग ऐप का उपयोग करना:
विभिन्न तरीकों और फाइलों में सभी प्रासंगिक mimetypes के साथ इसे जोड़ना जहां ऐसी चीजें परिभाषित की जाती हैं:
$ xdg-mime query default text/html chrome.desktop $ grep chrome .local/share/applications/mimeapps.list text/html=chrome.desktop x-scheme-handler/http=chrome.desktop x-scheme-handler/https=chrome.desktop x-scheme-handler/about=google-chrome.desktop x-scheme-handler/about=google-chrome.desktop; text/html=emacs.desktop;google-chrome.desktop;firefox.desktop; x-scheme-handler/http=chrome.desktop; $ grep chrome /usr/share/applications/defaults.list application/xhtml+xml=google-chrome.desktop text/html=google-chrome.desktop text/xml=gedit.desktop;pluma.desktop;google-chrome.desktop x-scheme-handler/http=google-chrome.desktop x-scheme-handler/https=google-chrome.desktop
उन फ़ाइलों में, मैंने
firefox
(मेरी पिछली डिफ़ॉल्ट) की सभी घटनाओं को बदल दियाgoogle-chrome
। कोई अन्य ब्राउज़र फ़ाइल में कहीं भी परिभाषित नहीं हैं:$ grep -E 'firefox|opera|chromium' /usr/share/applications/defaults.list \ .local/share/applications/mimeapps.list $
क्रोम को रूट के मामले में लॉन्च करना जो मदद करता है लेकिन यह मुझे नहीं होने देगा:
इसे डिफ़ॉल्ट के रूप में सेट करने के लिए डेबियन की वैकल्पिक प्रणाली का उपयोग करना:
$ sudo update-alternatives --install /usr/bin/www-browser www-browser /usr/bin/google-chrome 1080 update-alternatives: using /usr/bin/google-chrome to provide /usr/bin/www-browser (www-browser) in auto mode $ ls -l /etc/alternatives/www-browser lrwxrwxrwx 1 root root 22 Jan 23 17:03 /etc/alternatives/www-browser -> /usr/bin/google-chrome
इनमें से किसी पर भी कोई असर नहीं दिख रहा है। क्या कोई मुझे इस अशांत पॉप-अप से छुटकारा नहीं दिलाएगा?