Ubuntu,Debian Kali linux işletim sistemlerinde genel hatalar ve çözümlerini bu başlık altında paylaşmayı düşünüyorum umarım faydalı olur
Linux error messages warning solutions
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
Xlib: extension "RANDR" missing on display ":1.0".
Terminalde bir uygulama çalıştırdığınızda java kullanan bir uygulama ise verdiği bir hatadır bu uyarı önemsiz bir hata bu nedenle herhangi bir müdahalede bulunmanıza gerek yoktur.
Linux ubuntu işletim sistemlerinde python çalıştırırken bir hata mesajı
The program 'python' can be found in the following packages:
* python-minimal
* python3
Try: apt install
Yapmanız gereken
apt install python-minimal
veya python3
apt install python3
Linux alt yapısı olan herhangi bir sistemde python çalıştırırken alınan bir hata,bu hata genelde cannot import name unwrap ile biten bir hata ise python modüllerini kullanırken hatalı bir işlem sonucu bir sıkıntı var demektir
Traceback (most recent call last):
File "deneme.py", line 4, in <module>
import urllib.request
File "/root/Desktop/urllib.py", line 3, in <module>
See the following document for more info on URLs:
File "/usr/lib/python2.7/urllib2.py", line 120, in <module>
from urllib import (unwrap, unquote, splittype, splithost, quote,
ImportError: cannot import name unwrap
veya şuna benzer bir hata ise
ImportError: bad magic number in 'urllib': b'\x03\xf3\r\n'
Yapmanız gereken
find . -name "*.pyc" -print
Eğer Yukarıdaki kumut ile bir çıktı alırsanız şu komut ile devam edin
find . -name "*.pyc" -delete
Linux alt yapısı olan herhangi bir sistemde python çalıştırırken alınan bir hata,bu hata genelde cannot import name unwrap ile biten bir hata ise python modüllerini kullanırken hatalı bir işlem sonucu bir sıkıntı var demektir
Traceback (most recent call last):
File "deneme.py", line 4, in <module>
import urllib.request
File "/root/Desktop/urllib.py", line 3, in <module>
See the following document for more info on URLs:
File "/usr/lib/python2.7/urllib2.py", line 120, in <module>
from urllib import (unwrap, unquote, splittype, splithost, quote,
ImportError: cannot import name unwrap
veya şuna benzer bir hata ise
ImportError: bad magic number in 'urllib': b'\x03\xf3\r\n'
Yapmanız gereken
find . -name "*.pyc" -print
Eğer Yukarıdaki kumut ile bir çıktı alırsanız şu komut ile devam edin
find . -name "*.pyc" -delete
Yorumlar
Yorum Gönder