Skip to content
View shootie22's full-sized avatar
💭
😎
💭
😎
  • Copenhagen, Denmark 🇩🇰
  • 06:30 (UTC +01:00)

Block or report shootie22

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. check & set I/O scheduler in linux check & set I/O scheduler in linux
    1
    # check & set I/O scheduler in linux
    2
    ### check command
    3
    `$ cat /sys/block/*/queue/scheduler`
    4
    ### sample output
    5
    ```
  2. mount lvm volume mount lvm volume
    1
    Run `sudo pvs` to get a volume group (column VG) for your device.  
    2
    Run `sudo lvdisplay ⟨your VG⟩` to get a LV Path.  
    3
    Run `sudo vgchange -a y` to activate all groups.  
    4
    Now you can mount it: `sudo mount ⟨your LV Path⟩ /mnt/somepoint`