Кали Linux Linux загрузки с проблемами

39069
cmd

Я только что скачал Kali Linux и использовал UNetBootin для установки его на 4 Гб Sandisk Cruzer. Я воткнул его в свою машину и загрузился с нее. Варианты подходят для:

Default Back Live (forensic mode) Install with speech synthesis Hardware Detection Tool (HDT) 

Тем не менее, я не могу загрузить ни один из них; все они выдают одну и ту же ошибку:

Segmentation fault at address 0xb7200000  Fatal server error: Caught signal 11 (Segmentation fault). Server aborting.   Please consult The X.Org Foundation support  at http://wiki.x.org for help Please also check the log file at "/var/log/Xorg.0.log" for additional information.  Server terminated with error (1). Closing log file.  (debconf:4384): Gtk-WARNING ##: Cannot open display: 0 

Был также небольшой граф опций с 5 вариантами чисел 0-4 во главе с заголовком «Backtrace», но я не мог прочитать всю информацию в нем.

Почему я получаю эту ошибку и как ее обойти?

3
Вы уверены, что ваша загрузка не повреждена? 10 лет назад 0
@ Счастливое желтое лицо Я не знаю, как проверить, но да, я уверен cmd 10 лет назад 0

6 ответов на вопрос

2
DavidN

Do not use UNETBOOTIN, use Win32 Disk Imager if you are using Windows, or dd if you are using linux like so, after verifying the path of the USB storage:

dd if=kali.iso of=/dev/sdb bs=512k 

source, official kali website: http://docs.kali.org/installation/kali-linux-live-usb-install

1
Jeremy Winter

The problem, and it is the same issue I'm running into, is that UNetbootin creates an invalid syslinux.cfg file and the dd command creates an invalid drive format (ISO9006 I believe).

syslinux.cfg contains a few mistakes:

label ubnentry1 menu label ^Live (forensic mode) kernel /ubnkern append initrd=/live/initrd.img boot=live noconfig=sudo username=root hostname=kali noswap noautomount 

should be

label ubnentry1 menu label ^Live (forensic mode) kernel /live/vmlinuz append initrd=/live/initrd.img boot=live noconfig=sudo username=root hostname=kali noswap noautomount 

Also, this:

label ubnentry2 menu label ^Graphical install kernel /ubnkern append initrd=/install/initrd.gz video=vesa:ywrap,mtrr vga=788 -- quiet 

should be:

label ubnentry2 menu label ^Graphical install kernel /install/gtk/vmlinuz append initrd=/install/gtk/initrd.gz video=vesa:ywrap,mtrr vga=788 -- quiet 

Finally, add:

label ubnentry4 menu label ^Text install kernel /install/vmlinuz append initrd=/install/initrd.gz vga=788 -- quiet 

These are the changes needed for Unetbootin to boot. On the flip side I keep getting an error about needing to install the kernel first.

0
Jody Lee Bruchon

Я бы порекомендовал запустить тест ОЗУ (попробуйте Memtest86 +) на неисправном компьютере, чтобы убедиться, что оперативная память находится в хорошем рабочем состоянии. Ошибки сегментации обычно возникают из-за проблем с оборудованием (при условии, что само программное обеспечение хорошо протестировано и на большинстве аппаратных средств не работает по умолчанию).

0
spuder

Verify Download

To verify your download, go to http://www.kali.org/downloads/ and find the sha1 hash.

Run the following Linux/Mac command on the file downloaded form kali.org, and see if the numbers match:

$ shasum ~/Downloads/kali.tgz 68b91a8894709cc132ab7cd9eca57513e1ce478b 

Display Driver is crashing

The error messages you have provided, show that the OS is crashing on a Display driver.

You didn't state if you are dual booting Kali linux, or if you are attempting to run it inside a virtual machine. Here are some suggestions.

If you are installing to your actual machine, then you may have an incompatible graphics card. The only solutions would be:

  • Wait until an update that includes a patched video driver. Your crash appears to be similar to this one

  • Download the updated graphics card driver, and compile your own OS (not for the faint of heart)

  • Disable any additional video cards in your bios (tv tuners, ect...)

Alternatives

While not a fix, I would recomend running kali linux inside a Virtual Machine. Kali is a dedicated OS, and should not be used for your primary work. You can download a VM that is already to go from Kali.org. Just select 'VmMare' from the 'image type' drop down box.

Я четко заявил, что я использую 4 ГБ Sandisk Cruzer для загрузки. @spuder cmd 10 лет назад 0
Да, пропустил это. spuder 10 лет назад 0
0
Hamza Megahed

First, try to format the USB and then use this command:

dd if=/fali-linux/kali-linux.iso of=/dev/sdb 
-1
Charles Finaley

Я использовал rufus ( http://rufus.akeo.ie/ ) для создания своего загрузочного USB-накопителя при установке Kali Linux. Может быть, попробовать?

Похожие вопросы