create account

Tx 319c33357867ee16510d7bd2d2e39509ebc4ca75@57062720

Included in block 57,062,720 at 2021-09-02 05:12:00 (UTC)


Raw transaction

ref_block_num46,398
ref_block_prefix2,587,694,296
expiration2021-09-02 05:12:54
operations
0.
0.comment
1.
parent_author""
parent_permlinklinux
authoroneshot
permlinkinstall-linuxmint-on-an-lenovo-laptop-part-01-live-update
title"--- Installation of LinuxMINT on a LENOVO laptop--- Custumizing PART-01"
body"<h5>[PART-00](https://peakd.com/linux/@oneshot/install-linuxmint-on-an-lenovo-laptop-from-usb-stick)</h5><center>https://files.peakd.com/file/peakd-hive/oneshot/dfDD5bZN-tux.png</center>
I'm now trying to do some test installs. This laptop model is equipped with 2 hard drives, a 256gb solid state one [SSD] and a 1tb traditional one [HDD]. As first approach I've targeted the install to the SSD one with full success. All seems works flawless. I just notice maybe to much fan noise such as the processors was crunching some heavy duty tasks or something like. If this will persist I would investigate on that issue. <br />
<h4>-- 07 Aug 2020 Update --</h4>Done some software/repositories updates, installed the nVidia proprietary drivers and some desktop/layout customizations such as the installation of some applets on panel and desklets on desktop. As soon as possible I will publish some screenshot. No more problem with the fan noise and the checked cpu temperature stays (almost) always between 55° and 60° while 100° is reported as critic.<br />
<h4>-- 08 Aug 2020 Update --</h4>**SOME HARD DRIVES INSPECTIONS**
Here below the result of the `# df -l` command:
```
Disk /dev/nvme0n1: 238,49 GiB, 256060514304 bytes, 500118192 sectors
Disk model: HFM256GDHTNG-8310A
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: [...omiss...]

Device Boot Start End Sectors Size Id Type
/dev/nvme0n1p1 * 2048 1050623 1048576 512M b W95 FAT32
/dev/nvme0n1p2 1052670 500117503 499064834 238G 5 Extended
/dev/nvme0n1p5 1052672 500117503 499064832 238G 83 Linux
Disk /dev/sda: 931,53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10SPZX-24Z
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: [...omiss...]
Device Start End Sectors Size Type
/dev/sda1 34 32767 32734 16M Microsoft reserved
/dev/sda2 32768 1953523711 1953490944 931,5G Microsoft basic data
```
It can be seen that the **SSD** is reported as `/dev/nvme0n1`. It can be seen also that the default/standard _LinuxMINT_ installer targeted to the SSD drive doesn't have made a raw brute-force formatting of the entire SSD drive, keeping instead safe and intact the first (boot sectors and) partition `/dev/nvme0n1p1`. Another (strange) thing to notice is the completely missing of a swap partition. As a long-term linux user/installer I have to say that this is the first time that I can install a linux distro in the total missing of a dedicated physical swap partition &#128561; &nbsp; What happening behind the scenes? Maybe something such as a virtual/ram partition? As always I will investigate! :)
**HDD** is reported as `/dev/sda`. It is double partitioned with sda1 containing some _Microsoft_ reserved mess ≥⁰,⁰≤ &nbsp; My plan is to re-format the entire 1tb sda on a multipartioned scheme such as [this one](https://images.hive.blog/p/2bP4pJr4wVimqCWjYimXJe2cnCgnKb2p8TyhAC4sqoU?format=match&mode=fit). So I will getting rid off all the _Microsoft_ garbage ad I will have avaible some free partitions for the installation of (multiple) alternative _Linux_ distros such as maybe _Ubuntu_ _Debian_ and so on and keeping the most huge sda10 one for storing files purpose only.<br />
<h4>-- 14 Aug 2020 Update --</h4>I really doesn't like this weird (default) setup according who is mandatory to press the `[Fn]` key to to access the _function keys_ so I've disabled it this way: BIOS --> Configuration tab --> Hotkey Mode [disabled].
Experiencing a very annoying issue with the wifi connection that it's really pissing me off &#128545;&nbsp; First time I just pushed the fast (connection) key on the modem and all went well. From the 2nd time (and day) the modem connection key simply doesn't works and the typing password mode doesn't works also. So now I'm still going online by usb tethering from my tablet.
**Installed** _QTerminal_ and _Guake_ terminals, _ClipIt_ clipboard manager, _Imagemagick_ and _Gimp_ images manipulation software, _Google-Chrome_ browser, _Vim_ text editor.
I've noticed that the `apt` command doesn't autocomplete so I'm gone on `/etc/bash.bashrc` and commented out the follow piece of code:
```
#if ! shopt -oq posix; then
# if [ -f /usr/share/bash-completion/bash_completion ]; then
# . /usr/share/bash-completion/bash_completion
# elif [ -f /etc/bash_completion ]; then
# . /etc/bash_completion
# fi
#fi
```
Discovered a great _bash_ command to obtain a quick snapshot of many system hardware/software details `inixi -Fxz`
![test.png](https://files.peakd.com/file/peakd-hive/oneshot/DGGUjEzM-test.png)
`/etc/vim/vimrc`
```
" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
" the call to :runtime you can find below. If you wish to change any of those
" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
" will be overwritten everytime an upgrade of the vim packages is performed.
" It is recommended to make changes after sourcing debian.vim since it alters
" the value of the 'compatible' option.
runtime! debian.vim
" Vim will load $VIMRUNTIME/defaults.vim if the user does not have a vimrc.
" This happens after /etc/vim/vimrc(.local) are loaded, so it will override
" any settings in these files.
" If you don't want that to happen, uncomment the below line to prevent
" defaults.vim from being loaded.
" let g:skip_defaults_vim = 1
" Uncomment the next line to make Vim more Vi-compatible
" NOTE: debian.vim sets 'nocompatible'. Setting 'compatible' changes numerous
" options, so any other options should be set AFTER setting 'compatible'.
"set compatible
" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
if has("syntax")
syntax on
endif
" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
set background=dark
" Uncomment the following to have Vim jump to the last position when
" reopening a file
"au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"filetype plugin indent on
" The following are commented out as they cause vim to behave a lot
" differently from regular Vi. They are highly recommended though.
set tabstop=4
set softtabstop=4
set laststatus=2
set showcmd " Show (partial) command in status line.
"set showmatch " Show matching brackets.
set ignorecase " Do case insensitive matching
"set smartcase " Do smart case matching
set incsearch " Incremental search
set hlsearch
"set autowrite " Automatically save before commands like :next and :make
"set hidden " Hide buffers when they are abandoned
"set mouse=a " Enable mouse usage (all modes)
" Personals L340
noremap <space> :nohl<CR>
let html_number_lines = 0
" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif
```
<br /><br />
<sup>COMPLETE EXTRA SOFTWARE LIST
QTerminal, Guake, ClipIt, Imagemagick, Gimp, Google-Chrome, Vim.</sup>
"
json_metadata"{"app":"peakd/2020.08.3","description":"Installation detailed process of LinuxMINT20_64bit-Cinnamon \"Ulyana\" on the laptop LENOVO-IdeaPad_L340.","format":"markdown","image":["https://files.peakd.com/file/peakd-hive/oneshot/dfDD5bZN-tux.png","https://files.peakd.com/file/peakd-hive/oneshot/DGGUjEzM-test.png"],"links":["/linux/@oneshot/install-linuxmint-on-an-lenovo-laptop-from-usb-stick","https://images.hive.blog/p/2bP4pJr4wVimqCWjYimXJe2cnCgnKb2p8TyhAC4sqoU?format=match&amp;mode=fit"],"tags":["linux","linuxinstall","linuxmint","os","opensource"],"users":["oneshot"]}"
extensions[]
signatures
0.1f2253716b3705f3de3f6bf176110dd2e230f2913dae7b5941c9393dd952d4f4930b20b9be2b87a8a12548471b67123d79c62c4ccc69ca79f39ca9819d756454e0
transaction_id319c33357867ee16510d7bd2d2e39509ebc4ca75
block_num57,062,720
transaction_num36