It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency,
since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site;
Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in -
your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency
so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
----------------------------------------- Part 2: Encrypted Custom Installation
----------------------------------------- Step 1) Preparing the disk (deleting everything in your disk) with GParted:
Ok, now the real thing. Open your "Terminal" (it is something like the CMD/Powershell from Windows), it is located in the program list
Write this:
Quote from: write in terminal
sudo gparted
"sudo" is the command to execute something as "administrator", and "gparted" is a software for managing disk partitions.
The idea is to DELETE EVERYTHING in your HDD/SSD, you need to backup it, or you will lose all the data. I'm repeating, you are going to delete EVERYTHING from your computer (Windows, photos, email stored on your computer, games, everything) Select each of the partition, and delete them manually, because we are going to create different partitions:
You will need to create the new partition yourself, so read the next:
----------------------------------------- Step 2) Understanding partitions in Ubuntu:
This will be complex for Windows users. Windows use one partition for the OS, and install there the Windows "System" folder, the Hibernation file and the pagefile.sys are created in the same directory, and the "\Users\Administrator" is also there. Everything is in the same partition.
GNU-Linux uses a different approach, we are going to have these: - EFI partition (it is for GPT tables, instead of MBR; but I'm not explaining it here). - Boot partition - / (root) partition (it is like the "C://" from Windows) - /swap partition (it is the pagefile.sys from Windows) - /home partition (it is like the "Documents" from Windows)
This is an example of the partition used:
Partition / Example size / Format (additional notes) EFI partition, 1GB size, FAT32 (the recommended size is 256MB, but I just made it 1GB) Boot partition, 2GB size, EXT4 (it could be 1GB and you will still have plenty space for new kernels, I used 2GB anyway). Swap partition, 16GB size, SWAP (this is your pagefile.sys, double of your RAM is the recommended size) Root partition, 100GB size, EXT4 (this is your "program files" from Windows, the more software you install, the more space you need) Home partition, the rest GB size, EXT4 (this is your "Documents" from Windows, the more pictures, videos, films, documents and files, the more space you need)
This will work without encryption, but we want to encrypt, and we are going to hide our "swap", "root" and "home" partitions inside an "encrypted box" I'm going to explain in the next step. Our disk will looks like this:
----------------------------------------- Step 3) Formating with GParted:
In GParted, after you deleted all the partitions, create an: EFI partition, 1GB size, FAT32 Boot partition, 2GB size, EXT4 and an EXT4 partition, taking all the rest of the disk space.
Take note of the name of the partitions, example, "sda3". Do not create the SWAP, ROOT or HOME, because we are going to create it in the terminal.
Note: replace "sda3" for the name of your partition (Part 2 Step 3). Replace "xylber" for a custom name you choose. In this guide, everything is named "xylber" for the sake of simplicity.
Optional: If you want to clean all the data of your HDD, making it (almost) impossible to recover with specialized forensic tools, then use this command:
We had created the three partitions. In my 500GB HDD: SWAP will have 16GB (I have 8GB RAM), Root have 100GB to install applications, and all the rest of the space is for documents (minus the 2GB of boot and 1GB of EFI).
----------------------------------------- Step 5) Installing Ubuntu with the Manual assistant:
Time to install Ubuntu with the included assistant. Complete all the info, don't install updates (you will download them later, when you actually boot), but install third party software.
Click on "SOMETHING ELSE", and you are going to be redirected to the partitions screen. It will looks something like this:
You have to assign each partition a task, by double clicking their path in the list: EFI partition, 1GB size, FAT32 > use as EFI Boot partition, 2GB size, EXT4 > EXT4, Format, /boot (in the dropdown menu) Swap partition, 16GB size, SWAP > Use as SWAP Root partition, 100GB size, EXT4 > EXT4, Format, "/" (in the dropdown menu) Home partition, the rest GB size, EXT4 > EXT4, Format, /home
Device for Bootloader Installation: Choose the HDD, example: /dev/sda HDD-Model 500GB
Press "INSTALL NOW", wait for the install (maybe 10/15 minutes), but don't reboot when it finishes.
----------------------------------------- Step 6) Adding the encrypted partitions path to the kernel:
You need the ID of the partition (called "UUID), run:
Quote from: write in terminal
sudo blkid /dev/sda3
Remember to replace "sda3" for the name of your partition.
And we will mount the volumes. Replace "sda?" for the name of your "BOOT" partition, the 2GB partition of Ste3.
Quote from: write in terminal
sudo mount /dev/mapper/vgxylber-lvxylberroot /mnt sudo mount /dev/sda? /mnt/boot sudo mount /dev/mapper/vgxylber-lvxylberhome /mnt
sudo mount --bind /dev /mnt/dev sudo chroot /mnt mount -t proc proc /proc mount -t sysfs sys /sys mount -t devpts devpts /dev/pts
We will create the /etc/crypttab file:
Quote
sudo nano /etc/crypttab
In this new file you need to add this lines:
Quote from: file
#
Replace for your own code. Save the file. Tip: you can write again "sudo nano /etc/crypttab" and reopen the file to check if the file was saved.
Finally
Quote from: write in terminal
update-initramfs -k all -c
It is done unless you needed an special command to boot Ubuntu (do you remember the part1-step3?).
So, if you didn't need an special command, then, reboot, and done. The next time you reboot Ubuntu, you will be asked your encryption password. If you needed an special command, then follow Step 7:
----------------------------------------- Step 7) Adding a permanent kernel boot parameter:
In this example we are going to add the pci=noaer command, but it will depend on what you used (if you needed):
Reboot, the next time you reboot Ubuntu, you will be asked your encryption password.
Enjoy
===========THE END===========
It took me 5 hours to make this tutorial Be free from the tirany of the closed sourced Windows! Stay secure on your encrypted computer! Be brave and follow it! If I made a mistake, let me know!
Notice: This post is intended for noob/windows users (like me) who wants to install Ubuntu on their computers/laptops for first time, with encryption and custom partition sizes. Ubuntu can do this, but the sizes of the partitions are created automatically. We don't want this, we want to choose the sizes ourselves.
I made it because the tutorials available on the web are either incomplete, or too complicated for an user who never used Linux before (like me). This guide is the most descriptive of all. Important: Encryption, while secure, reduces the performance of your computer. Source: https://www.phoronix.com/scan.php?page=article&item=ubuntu-1804-encrypt&num=1
Protect your cryptos, your privacy, yourself, use an encrypted OS! I made this tutorial for you Bitcointalk users, as a way of giving you all back some of the teaching you gave me with the cryptos.
Part 1: Let's Start Step 1) Download Linux: Step 2) Burn the image in CD or Pendrive: Step 3) Booting from DVD-drive/Pendrive: Step 4) Testing UBUNTU from DVD-drive/Pendrive (without installing):
Part 2: Encrypted Custom Installation Step 1) Creating partitions (and deleting everything in your disk): Step 2) Understanding partitions in Ubuntu: Step 3) Formating with GParted: Step 4) Creating encrypted volumes: Step 5) Installing Ubuntu with the Manual assistant: Step 6) Adding the encrypted partitions path to the kernel: Step 7) Adding a permanent kernel boot parameter:
----------------------------------------- Part 1: Let's Start
We need the "desktop" version (we are not going to create a "server"), and we have 3 options: A) Ubuntu 18.04.2 LTS: The "LTS" versions are "Long Term Support", these versions are more stable and get more updates, for longer time. B) Ubuntu 18.10: Newest version, with nine months support. C) Ubuntu 19.04: This is the version which replaces the "18.04.2 LTS", it is going to be launched on April 18th 2019, but you can try the beta and daily builds right now. <<< I PICKED THIS VERSION
If you have a pendrive (4gb or more), then > Be sure to backup all the data stored on your pendrive, because it is going to be replaced by the Ubuntu files. You will need: A) https://rufus.ie/ (Rufus will help you to copy the .iso content to your pendrive and make it bootable).
----------------------------------------- Step 3) Booting from DVD-drive/Pendrive:
Insert the DVD on the DVD drive, or plug in the pendrive in an USB slot, and restart your computer.
If you have the DVD-drive/Pendrive set as a boot device on your BIOS, then, simply press repeteadly a key on your keyboard while the computer boots. This will tells the computer to boot from the DVD-drive/Pendrive instead of using your HDD or SSD drive. --but, if it doesn't work, you will need to configure your BIOS to boot from the DVD-Drive/Pendrive.
Each BIOS is different, and I'm not goin to cover "how to boot from a pendrive" in this guide. Just some quick recommendations: -Some BIOSes have an option called "override boot device", and let you pick the device you want, valid for this one time (no changes will be made to the BIOS configuration). -Some BIOSes have a "Boot device selector/menu", for example, Asus Laptops have it in the F8 key (press F8 when you power up the laptop). -I recommend to have "Fast Boot" enabled, and "CSM support" disabled for Ubuntu. Or both disabled (I'm not going to explain dual boot, nor MBR vs GPT here).
Once you can boot from the DVD-Drive/Pendrive, you will see something like this:
----------------------------------------- Step 4) Testing UBUNTU from DVD-drive/Pendrive (without installing):
We are going to check if you computer works well with Ubuntu, and, if you like it. The options you will see are probably: *Ubuntu *Install Ubuntu *System setup
Don't worry, nothing is going to be deleted in your computer
Just pick "Ubuntu", and Ubuntu will launch itself from the DVD-drive/Pendrive, without installing. It is a "live CD" for testing purposes. It will take more than a minute to boot, because it will be load from your the DVD-drive/Pendrive, not from your HDD/SSD:
Ok, if you achieved that screen, perfect. Try yourself enabling WIFI, browsing the web, opening the included software, like LibreOffice, etc. This is where you actually decide if you want to install it or not.
Problems?: If you can't boot, then you need to see why Ubuntu can't boot from the DVD-Drive/Pendrive, if it is stuck on the "loading purple screen", then press "Ctrl + Alt + F1" or "down arrow" and you will see the log. For example, the "PCIe Bus error severity=Corrected" error can be (sometimes) solved by adding "pci=noaer" on the kernel launch options. I'm not going to explain it here! But you can see the answer there: https://askubuntu.com/questions/19486/how-do-i-add-a-kernel-boot-parameter