Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

GreenCloud | 10th Birthday Sale | 1010 plans | Giveaways

18485878990113

Comments

  • 1 Available BudgetKVMJP-2

  • UK/NL/DE needs restock ;)

  • @gbzret4d said:
    UK/NL/DE needs restock ;)

    Everything needs re stock

    Thanked by 1bdl
  • What's the difference between EPYC Rome CPU and E5v4 CPU? Any substantial difference?

  • Great network in Tokyo

  • Here's an outline. Not tested.

    # Find all processes with more than 20% CPU utilization
    MINUTIL=20
    
    
    # Create cgroup (cgroup-v2)
    echo "+cpu" >> /sys/fs/cgroup/cgroup.subtree_control
    echo "+cpuset" >> /sys/fs/cgroup/cgroup.subtree_control
    mkdir -p /sys/fs/cgroup/cpulimited
    # 30% quota : Run for 0.3 seconds for every 1 second
    echo "300000 1000000" > /sys/fs/cgroup/cpulimited/cpu.max
    
    # Loop forever
    while true; do
        # Read process utilization
        top -bn 1 | tail -n +8 | awk '{print $1, $9, $12}'  > /tmp/psout
        while read pid usage name; do
            if [ $(bc <<< "$usage >= $MINUTIL") -eq 1 ]
            then
                echo "$name ($pid) using $usage% => limit CPU"
                cgclassify -g cpu:/cpulimited $pid
            fi
        done < /tmp/psout
        sleep 5
    done
    
    
    
    Thanked by 1loay
  • Happy 10th Birthday!

  • @tototo said:

    1 Available - BudgetKVMMO-1
    1 Available - EPYCSG-1
    2 Available - BudgetKVMIL-2
    2 Available - BudgetKVMMO-2
    2 Available - BudgetKVMNL-2
    2 Available - BudgetKVMNY-1
    2 Available - BudgetKVMSJC-3
    2 Available - EPYCDE-2
    3 Available - BudgetKVMIL-3
    3 Available - BudgetKVMJP-2
    3 Available - BudgetKVMSJC-2
    3 Available - EPYCDE-3
    3 Available - EPYCTX-1
    4 Available - BudgetKVMJAX-1
    4 Available - BudgetKVMMO-3
    4 Available - EPYCSJC-2
    5 Available - BudgetKVMAZ-3
    5 Available - BudgetKVMNL-3
    5 Available - EPYCJP-3
    5 Available - EPYCUK-3
    6 Available - EPYCDE-1
    6 Available - EPYCSG-2
    6 Available - EPYCSG-3
    7 Available - BudgetKVMHK-2
    7 Available - BudgetKVMNY-2
    7 Available - BudgetKVMSG-2
    7 Available - BudgetKVMTX-3
    7 Available - EPYCSJC-3
    8 Available - BudgetKVMHK-3
    8 Available - BudgetKVMTX-1
    8 Available - BudgetKVMUK-3
    8 Available - EPYCJP-1
    8 Available - EPYCJP-2
    8 Available - EPYCSJC-1
    10 Available - BudgetKVMAZ-2
    11 Available - BudgetKVMTX-2
    12 Available - BudgetKVMSG-3
    14 Available - 2222 SJC
    15 Available - EPYCUK-2
    16 Available - BudgetKVMJAX-2
    18 Available - BudgetKVMJP-3
    27 Available - BudgetKVMJAX-3
    28 Available - EPYCUK-1
    

    I don't see it. Why?

  • @plumberg said:

    @tototo said:

    1 Available - BudgetKVMMO-1
    1 Available - EPYCSG-1
    2 Available - BudgetKVMIL-2
    2 Available - BudgetKVMMO-2
    2 Available - BudgetKVMNL-2
    2 Available - BudgetKVMNY-1
    2 Available - BudgetKVMSJC-3
    2 Available - EPYCDE-2
    3 Available - BudgetKVMIL-3
    3 Available - BudgetKVMJP-2
    3 Available - BudgetKVMSJC-2
    3 Available - EPYCDE-3
    3 Available - EPYCTX-1
    4 Available - BudgetKVMJAX-1
    4 Available - BudgetKVMMO-3
    4 Available - EPYCSJC-2
    5 Available - BudgetKVMAZ-3
    5 Available - BudgetKVMNL-3
    5 Available - EPYCJP-3
    5 Available - EPYCUK-3
    6 Available - EPYCDE-1
    6 Available - EPYCSG-2
    6 Available - EPYCSG-3
    7 Available - BudgetKVMHK-2
    7 Available - BudgetKVMNY-2
    7 Available - BudgetKVMSG-2
    7 Available - BudgetKVMTX-3
    7 Available - EPYCSJC-3
    8 Available - BudgetKVMHK-3
    8 Available - BudgetKVMTX-1
    8 Available - BudgetKVMUK-3
    8 Available - EPYCJP-1
    8 Available - EPYCJP-2
    8 Available - EPYCSJC-1
    10 Available - BudgetKVMAZ-2
    11 Available - BudgetKVMTX-2
    12 Available - BudgetKVMSG-3
    14 Available - 2222 SJC
    15 Available - EPYCUK-2
    16 Available - BudgetKVMJAX-2
    18 Available - BudgetKVMJP-3
    27 Available - BudgetKVMJAX-3
    28 Available - EPYCUK-1
    

    Wow. How did you scrape this?

    I run bookmarklet on chrome

  • Happy 10th Birthday!

  • Happy 10th Birthday!

  • Let's go one more day to go

  • Happy 10th Birthday!

  • @rincewind said:

    Here's an outline. Not tested.

    > # Find all processes with more than 20% CPU utilization
    > MINUTIL=20
    > 
    > 
    > # Create cgroup (cgroup-v2)
    > echo "+cpu" >> /sys/fs/cgroup/cgroup.subtree_control
    > echo "+cpuset" >> /sys/fs/cgroup/cgroup.subtree_control
    > mkdir -p /sys/fs/cgroup/cpulimited
    > # 30% quota : Run for 0.3 seconds for every 1 second
    > echo "300000 1000000" > /sys/fs/cgroup/cpulimited/cpu.max
    > 
    > # Loop forever
    > while true; do
    >     # Read process utilization
    >     top -bn 1 | tail -n +8 | awk '{print $1, $9, $12}'  > /tmp/psout
    >     while read pid usage name; do
    >         if [ $(bc <<< "$usage >= $MINUTIL") -eq 1 ]
    >         then
    >             echo "$name ($pid) using $usage% => limit CPU"
    >             cgclassify -g cpu:/cpulimited $pid
    >         fi
    >     done < /tmp/psout
    >     sleep 5
    > done
    > 
    > 
    > 

    Very useful, thank you!!

  • When im ordering a server and paying for 3 years will the doubled ram reduced after 3 years?

  • @gbzret4d said:
    When im ordering a server and paying for 3 years will the doubled ram reduced after 3 years?

    Nope. It is recurring

    Thanked by 1gbzret4d
  • gbzret4dgbzret4d Member
    edited October 2023

    @Deepak_leb said:

    @gbzret4d said:
    When im ordering a server and paying for 3 years will the doubled ram reduced after 3 years?

    Nope. It is recurring

    Thanks!
    I hope i can get one server in DE, NL or UK in the next hours (no stock atm)

    Edit: ive asked support. You need to pay again for 3 years to keep the double ram

  • Happy 10th Birthday!

  • There isn't JP or SG in stock.

  • plumbergplumberg Veteran, Megathread Squad

    @Flash said:
    There isn't JP or SG in stock.

    It comes and goes and comes and goes and goes and goes

  • @plumberg said:

    @Flash said:
    There isn't JP or SG in stock.

    It comes and goes and comes and goes and goes and goes

    Oh ya...

    Thanked by 1plumberg
  • MOARRRRRRRRRR

  • @nyamenk said:
    MOARRRRRRRRRR

    soeboeh 🤣

    Thanked by 1nyamenk
  • @Ganonk said:

    @nyamenk said:
    MOARRRRRRRRRR

    soeboeh 🤣

    The rooster crowed

  • MOARRRRRRRRRR

  • Happy 10th Birthday! 🎈

  • trek778trek778 Member
    edited October 2023

    nvm question answered

  • Happy birthday!

  • Happy 10th Birthday!

Sign In or Register to comment.