Kali Linux “Live” has two options in the default boot menu which enabl dịch - Kali Linux “Live” has two options in the default boot menu which enabl Việt làm thế nào để nói

Kali Linux “Live” has two options i

Kali Linux “Live” has two options in the default boot menu which enable persistence — the preservation of data on the “Kali Live” USB drive — across reboots of “Kali Live”. This can be an extremely useful enhancement, and enables you to retain documents, collected testing results, configurations, etc., when running Kali Linux “Live” from the USB drive, even across different systems. The persistent data is stored in its own partition on the USB drive, which can also be optionally LUKS-encrypted.

To make use of the USB persistence options at boot time, you’ll need to do some additional setup on your “Kali Linux Live” USB drive; this article will show you how.

This guide assumes that you have already created a Kali Linux “Live” USB drive as described in the section on that subject. For the purposes of this article, we’ll assume you’re working on a Linux-based system.

Kali Linux persistence boot options

You’ll need to have root privileges to do this procedure, or the ability to escalate your privileges with the command “sudo su”. In this example, we assume

you are running as the root user
your USB drive is /dev/sdb
your USB drive has a capacity of at least 8GB — the Kali Linux image takes over 3GB, and for this guide, we’ll be creating a new partition of about 4GB to store our persistent data in.
In this example, we’ll create a new partition to store our persistent data into, starting right above the second Kali Live partition and ending at 7GB, put an ext3 file system onto it, and create a persistence.conf file on the new partition.

First, begin by imaging the latest Kali Linux ISO (currently v1.0.9a) to your USB drive as described in this article. We’re going to assume that the two partitions created by the imaging are /dev/sdb1 and /dev/sdb2. This can be verified with the command “fdisk -l“.

Create and format an additional partition on the USB drive.
First, let’s create the new partition in the empty space above our Kali Live partitions.
end=7gb
read start _ < /mnt/my_usb/persistence.conf
umount /dev/sdb3
Adding USB Persistence with LUKS Encryption

Alternatively, you can create a LUKS-encrypted persistent storage area. This adds an extra layer of security to your sensitive files when traveling with Kali Live on USB devices. In the following example, we’ll create a new partition to store our persistent data into, starting right above the second Kali Live partition and ending at 7GB, set up LUKS encryption on the new partition, put an ext3 file system onto it, and create a persistence.conf file on it.

Image the latest Kali Linux ISO (currently v1.0.9a) to your USB drive as described in this article.
Create the new partition in the empty space above our Kali Live partitions.
end=7gb
read start _ < /mnt/my_usb/persistence.conf
umount /dev/mapper/my_usb
Close the encrypted channel to our persistence partition.
cryptsetup luksClose /dev/mapper/my_usb
That’s really all there is to it! To use the persistent data features, simply plug your USB drive into the computer you want to boot up Kali Live on — make sure your BIOS is set to boot from your USB device — and fire it up. When the Kali Linux boot screen is displayed, choose the persistent option you set up on your USB drive, either normal or encrypted.
0/5000
Từ: -
Sang: -
Kết quả (Việt) 1: [Sao chép]
Sao chép!
Kali Linux “Live” has two options in the default boot menu which enable persistence — the preservation of data on the “Kali Live” USB drive — across reboots of “Kali Live”. This can be an extremely useful enhancement, and enables you to retain documents, collected testing results, configurations, etc., when running Kali Linux “Live” from the USB drive, even across different systems. The persistent data is stored in its own partition on the USB drive, which can also be optionally LUKS-encrypted.To make use of the USB persistence options at boot time, you’ll need to do some additional setup on your “Kali Linux Live” USB drive; this article will show you how.This guide assumes that you have already created a Kali Linux “Live” USB drive as described in the section on that subject. For the purposes of this article, we’ll assume you’re working on a Linux-based system.Kali Linux persistence boot optionsYou’ll need to have root privileges to do this procedure, or the ability to escalate your privileges with the command “sudo su”. In this example, we assumeyou are running as the root useryour USB drive is /dev/sdbyour USB drive has a capacity of at least 8GB — the Kali Linux image takes over 3GB, and for this guide, we’ll be creating a new partition of about 4GB to store our persistent data in.In this example, we’ll create a new partition to store our persistent data into, starting right above the second Kali Live partition and ending at 7GB, put an ext3 file system onto it, and create a persistence.conf file on the new partition.
First, begin by imaging the latest Kali Linux ISO (currently v1.0.9a) to your USB drive as described in this article. We’re going to assume that the two partitions created by the imaging are /dev/sdb1 and /dev/sdb2. This can be verified with the command “fdisk -l“.

Create and format an additional partition on the USB drive.
First, let’s create the new partition in the empty space above our Kali Live partitions.
end=7gb
read start _ < <(du -bcm kali-linux-1.0.8-amd64.iso | tail -1); echo $start
parted /dev/sdb mkpart primary $start $end
The parted command may advise you that it can’t use the exact start values you specified; if so, accept the suggested value instead. If advised that the partition isn’t placed at an optimal location, “ignore” it. When parted completes, the new partition should have been created at /dev/sdb3; again, this can be verified with the command “fdisk -l“.

Next, create an ext3 file system in the partition and label it “persistence”.
mkfs.ext3 -L persistence /dev/sdb3
e2label /dev/sdb3 persistence
Create a mount point, mount the new partition there, and then create the configuration file to enable persistence. Finally, unmount the partition.
mkdir -p /mnt/my_usb
mount /dev/sdb3 /mnt/my_usb
echo "/ union" > /mnt/my_usb/persistence.conf
umount /dev/sdb3
Adding USB Persistence with LUKS Encryption

Alternatively, you can create a LUKS-encrypted persistent storage area. This adds an extra layer of security to your sensitive files when traveling with Kali Live on USB devices. In the following example, we’ll create a new partition to store our persistent data into, starting right above the second Kali Live partition and ending at 7GB, set up LUKS encryption on the new partition, put an ext3 file system onto it, and create a persistence.conf file on it.

Image the latest Kali Linux ISO (currently v1.0.9a) to your USB drive as described in this article.
Create the new partition in the empty space above our Kali Live partitions.
end=7gb
read start _ < <(du -bcm kali-linux-1.0.8-amd64.iso | tail -1); echo $start
parted /dev/sdb mkpart primary $start $end
The parted command may advise you that it can’t use the exact start value you specified; if so, accept the suggested value instead. If advised that the partition isn’t placed at an optimal location, “ignore” it. When parted completes, the new partition should have been created at /dev/sdb3; again, this can be verified with the command “fdisk -l“.

Initialize the LUKS encryption on the newly-created partition. You’ll be warned that this will overwrite any data on the partion. When prompted whether you want to proceed, type “YES” (all upper case). Enter your selected passphrase twice when asked to do so, and be sure to pick a passphrase you’re going to remember: if you forget it, your data will still be persistent, just irretrievable (and unusable).
cryptsetup --verbose --verify-passphrase luksFormat /dev/sdb3
cryptsetup luksOpen /dev/sdb3 my_usb
Create the ext3 filesystem, and label it “persistence”.
mkfs.ext3 -L persistence /dev/mapper/my_usb
e2label /dev/mapper/my_usb persistence
Create a mount point, mount our new encrypted partition there, set up the persistence.conf file, and unmount the partition.
mkdir -p /mnt/my_usb
mount /dev/mapper/my_usb /mnt/my_usb
echo "/ union" > /mnt/my_usb/persistence.conf
umount /dev/mapper/my_usb
Close the encrypted channel to our persistence partition.
cryptsetup luksClose /dev/mapper/my_usb
That’s really all there is to it! To use the persistent data features, simply plug your USB drive into the computer you want to boot up Kali Live on — make sure your BIOS is set to boot from your USB device — and fire it up. When the Kali Linux boot screen is displayed, choose the persistent option you set up on your USB drive, either normal or encrypted.
đang được dịch, vui lòng đợi..
Kết quả (Việt) 2:[Sao chép]
Sao chép!
Kali Linux "Live" có hai tùy chọn trong menu khởi động mặc định cho phép kiên trì - bảo quản số liệu trên "Kali Live" ổ đĩa USB - qua khởi động lại của "Kali Live". Đây có thể là một nâng cao cực kỳ hữu ích, và cho phép bạn giữ lại các tài liệu, kết quả thử nghiệm thu thập được, cấu hình, vv, khi chạy Kali Linux "Live" từ ổ đĩa USB, thậm chí trên các hệ thống khác nhau. Các dữ liệu liên tục được lưu trữ trong phân vùng riêng trên ổ đĩa USB, mà cũng có thể được tùy chọn LUKS-mã hóa. Để sử dụng các tùy chọn USB kiên trì vào lúc khởi động, bạn sẽ cần phải làm một số thiết lập thêm về bạn "Kali Linux Live "ổ đĩa USB; bài viết này sẽ chỉ cho bạn cách. Hướng dẫn này giả định rằng bạn đã tạo ra một Kali Linux ổ "Live" USB như được mô tả trong phần nói về chủ đề đó. Đối với các mục đích của bài viết này, chúng tôi sẽ giả sử bạn đang làm việc trên một hệ thống dựa trên Linux. Tùy chọn khởi động kiên trì Kali Linux Bạn sẽ cần phải có quyền root để làm thủ tục này, hoặc khả năng leo thang đặc quyền của bạn với lệnh "sudo su". Trong ví dụ này, chúng ta giả sử bạn đang chạy như người sử dụng gốc ổ đĩa USB của bạn là / dev / sdb ổ đĩa USB của bạn có dung lượng tối thiểu 8GB - hình ảnh Kali Linux có hơn 3GB, và cho hướng dẫn này, chúng ta sẽ tạo ra một phân vùng mới khoảng 4GB để lưu trữ dữ liệu liên tục của chúng tôi ở. Trong ví dụ này, chúng ta sẽ tạo một phân vùng mới để lưu trữ dữ liệu liên tục của chúng tôi vào, bắt đầu ngay trên Kali Sống phân vùng thứ hai và kết thúc tại 7GB, đặt một hệ thống tập tin ext3 lên nó, và tạo ra một tập tin persistence.conf trên phân vùng mới. Đầu tiên, hãy bắt đầu bằng cách ghi ảnh mới nhất Kali Linux ISO (hiện v1.0.9a) vào ổ USB của bạn như được mô tả trong bài viết này. Chúng ta giả sử rằng hai phân vùng được tạo ra bởi các hình ảnh là / dev / sdb1 và / dev / sdb2. Điều này có thể được kiểm chứng với các lệnh "fdisk -l". Tạo và định dạng một phân vùng thêm trên ổ đĩa USB. Đầu tiên, chúng ta hãy tạo phân vùng mới trong không gian trống trên phân vùng Kali sống của chúng tôi. Cuối = 7gb đọc bắt đầu _ <<( du -bcm kali-linux-1.0.8-amd64.iso | tail -1); echo $ bắt đầu hé mở / dev / sdb mkpart $ tiểu học bắt đầu $ kết thúc lệnh parted có thể tư vấn cho bạn rằng nó không thể sử dụng các giá trị khởi đầu chính xác mà bạn chỉ định; nếu vậy, chấp nhận các giá trị đề nghị thay thế. Nếu khuyên rằng phân vùng không được đặt ở một vị trí tối ưu, "bỏ qua" nó. Khi chia tay hoàn tất, các phân vùng mới nên đã được tạo ra vào / dev / sdb3; một lần nữa, điều này có thể được kiểm chứng với các lệnh "fdisk -l". Tiếp theo, tạo một hệ thống tập tin ext3 trong phân vùng và nhãn là "kiên trì". mkfs.ext3 -L persistence / dev / sdb3 e2label / dev / sdb3 kiên trì Tạo điểm gắn kết, gắn kết các phân vùng mới có, và sau đó tạo ra các tập tin cấu hình để cho phép sự kiên trì. Cuối cùng, tháo gắn kết phân vùng. Mkdir -p / mnt / my_usb mount / dev / sdb3 / mnt / my_usb echo "/ union"> /mnt/my_usb/persistence.conf umount / dev / sdb3 Thêm USB Persistence với LUKS Encryption Ngoài ra, bạn có thể tạo ra một khu vực lưu trữ liên tục LUKS-mã hóa. Điều này thêm một lớp bảo mật cho các tập tin nhạy cảm của bạn khi đi du lịch với Kali Live trên các thiết bị USB. Trong ví dụ sau, chúng ta sẽ tạo một phân vùng mới để lưu trữ dữ liệu liên tục của chúng tôi vào, bắt đầu ngay trên Kali Sống phân vùng thứ hai và kết thúc tại 7GB, thiết lập mã hóa LUKS trên phân vùng mới, đặt một hệ thống tập tin ext3 vào nó, và tạo ra một tập tin persistence.conf vào nó. Hình ảnh mới nhất Kali Linux ISO (hiện v1.0.9a) vào ổ USB của bạn như được mô tả trong bài viết này. Tạo phân vùng mới trong không gian trống trên phân vùng Kali sống của chúng tôi. cuối = 7gb đọc bắt đầu _ <<(du -bcm kali-linux-1.0.8-amd64.iso | tail -1); echo $ bắt đầu hé mở / dev / sdb mkpart $ tiểu học bắt đầu $ kết thúc lệnh parted có thể tư vấn cho bạn rằng nó không thể sử dụng các giá trị bắt đầu chính xác mà bạn chỉ định; nếu vậy, chấp nhận các giá trị đề nghị thay thế. Nếu khuyên rằng phân vùng không được đặt ở một vị trí tối ưu, "bỏ qua" nó. Khi chia tay hoàn tất, các phân vùng mới nên đã được tạo ra vào / dev / sdb3; một lần nữa, điều này có thể được kiểm chứng với các lệnh "fdisk -l". Khởi tạo mã hóa LUKS trên phân vùng mới được tạo ra. Bạn sẽ được cảnh báo rằng điều này sẽ ghi đè lên bất kỳ dữ liệu trên partion. Khi được nhắc xem bạn có muốn tham gia thảo luận, gõ "YES" (tất cả các trường hợp trên). Nhập cụm từ mật khẩu được lựa chọn của bạn hai lần khi được hỏi để làm như vậy, và chắc chắn để chọn một cụm từ mật khẩu bạn sẽ phải ghi nhớ: nếu bạn quên nó, dữ liệu của bạn vẫn sẽ kiên trì, chỉ vĩnh viễn (và không sử dụng được). Cryptsetup --verbose - xác minh-passphrase luksFormat / dev / sdb3 cryptsetup luksOpen / dev / sdb3 my_usb Tạo hệ thống tập tin ext3, và gọi nó là "kiên trì". mkfs.ext3 -L persistence / dev / mapper / my_usb e2label / dev / mapper / my_usb kiên trì Tạo một gắn kết điểm, gắn kết phân vùng mới được mã hóa của chúng tôi ở đó, thiết lập các tập tin persistence.conf, và tháo gắn kết phân vùng. mkdir -p / mnt / my_usb mount / dev / mapper / my_usb / mnt / my_usb echo "/ union"> / mnt / my_usb /persistence.conf umount / dev / mapper / my_usb Đóng kênh được mã hóa để phân vùng kiên trì của chúng tôi. cryptsetup luksClose / dev / mapper / my_usb Đó thực sự là tất cả để có nó! Để sử dụng các tính năng dữ liệu liên tục, chỉ cần cắm ổ USB của bạn vào máy tính mà bạn muốn khởi động Kali Live trên - chắc chắn rằng BIOS của bạn được thiết lập để khởi động từ thiết bị USB của bạn - và cháy nó lên. Khi màn hình khởi động Kali Linux được hiển thị, chọn tùy chọn dai dẳng bạn thiết lập trên ổ USB của bạn, bình thường hoặc mã hóa.























































đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2025 I Love Translation. All reserved.

E-mail: