Skip to content
View RizzoV's full-sized avatar

Block or report RizzoV

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. How to attach to and inspect a runni... How to attach to and inspect a running Python process.md
    1
    `gdb` can be used to attach a running Python process and inspect its internal status by monitoring threads and their 
    2
    respective stack trace, with no need to use any particular option when first launching the process. In this way, you can
    3
    debug processes that were launched with no prior debugging intention.
    4
    
                  
    5
    The following procedure needs `/proc/sys/kernel/yama/ptrace_scope` to be set to `1`.
  2. Increase CentOS / AmazonAMI EC2 VM d... Increase CentOS / AmazonAMI EC2 VM disk size on the go
    1
    1. In the EC2 dashboard, select the VM for which you want to resize the disk.
    2
    2. Click on the `Storage` tab -> `Volume ID` to open the EBS volume dashboard.
    3
    3. Click on the `Actions` button -> `Modify volume` to open the volume settings.
    4
    4. Resize the volume and click on `Modify` to apply the changes.
    5
        * You can launch `lsblk` on the affected EC2 VM to check that while the volume size has changed, the internal partitions still have the old dimensions.