Difference between revisions of "Test"

From Funtoo
Jump to navigation Jump to search
Line 4: Line 4:
{{SupportBox|title=Cinnamon|grade=A|body=Cinnamon is supported in Funtoo Linux when using our official {{c|cinnamon}} mix-in our using our ''official stage3 builds.''}}
{{SupportBox|title=Cinnamon|grade=A|body=Cinnamon is supported in Funtoo Linux when using our official {{c|cinnamon}} mix-in our using our ''official stage3 builds.''}}
{{SupportBox|title=MATE|grade=A|body=MATE is supported in Funtoo Linux when using our official {{c|mate}} mix-in our using our ''official stage3 builds.''}}
{{SupportBox|title=MATE|grade=A|body=MATE is supported in Funtoo Linux when using our official {{c|mate}} mix-in our using our ''official stage3 builds.''}}
 
{{SupportBox|title=MATE|grade=B|body=KDE in Funtoo Linux when using our official {{c|kde}} mix-in. We do not yet have a stage3 build so no regular build testing is performed.}}


{{NotSupportedBox|title=systemd|body=Systemd is not supported in Funtoo Linux. This is a technical decision and we will not be adding systemd support to Funtoo.}}
{{NotSupportedBox|title=systemd|body=Systemd is not supported in Funtoo Linux. This is a technical decision and we will not be adding systemd support to Funtoo.}}

Revision as of 02:26, November 16, 2021

Test edit. Another test edit.

   GNOME - Grade 'A'
GNOME is supported in Funtoo Linux when using our official gnome mix-in our using our official stage3 builds.
   Cinnamon - Grade 'A'
Cinnamon is supported in Funtoo Linux when using our official cinnamon mix-in our using our official stage3 builds.
   MATE - Grade 'A'
MATE is supported in Funtoo Linux when using our official mate mix-in our using our official stage3 builds.
   MATE - Grade 'B'
KDE in Funtoo Linux when using our official kde mix-in. We do not yet have a stage3 build so no regular build testing is performed.
   systemd -- Not Supported

Systemd is not supported in Funtoo Linux. This is a technical decision and we will not be adding systemd support to Funtoo.

   {{{title}}}
{{{body}}}
   {{{title}}}
{{{body}}}
   {{{title}}}
{{{body}}}
   Grab me from DockerHub!
This stage3 can be deployed in Docker via docker run funtoo/stage3-intel64-skylake
root ##g##drobbins@ryzen##!g## ~ $ ssh -i ~/Downloads/drobbins-funtoo-us-east-1.pem ec2-user@54.152.74.161
The authenticity of host '54.152.74.161 (54.152.74.161)' can't be established.
ECDSA key fingerprint is SHA256:06VxabD5Gom5FRzpg7jZrBWro+TJkZBFa2+29WTSII4.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '54.152.74.161' (ECDSA) to the list of known hosts.

 // Welcome to Funtoo Linux for Amazon EC2! This image has been optimized 
 // for the best possible performance by taking advantage of all CPU    
 // instruction sets offered by Amazon Web Services.

 >>> Release:                       Funtoo Linux 1.2-release-ec2
 >>> Version:                       17-Nov-2018
 >>> Subarch:                       intel64-haswell
 >>> Created by:                    Daniel Robbins <drobbins@funtoo.org>
 >>> Open Source Community:         Funtoo Linux (https://www.funtoo.org)
 >>> Commercial Support:            BreezyOps (https://breezyops.com)
 >>> Bug reports:                   https://bugs.funtoo.org
 >>> Support email:                 support@funtoo.org

 NOTE: This message can be removed by deleting /etc/motd.

root ##g##ec2-user@ip-172-31-22-215##!g## ~ $ sudo su
root ##r##ip-172-31-22-215##!r## /home/ec2-user # ego sync
    (python source code) - python test
def fib(n):
    a, b = 0, 1
    while a < n:
        print(a, end=' ')
        a, b = b, a+b
    print()
fib(1000)