Search found 141 matches

by szept
Thu Apr 25, 2024 12:43 pm
Forum: EasyOS
Topic: How to protect from password guessing?
Replies: 1
Views: 113

How to protect from password guessing?

My password for Easy startup is quite easy, hence probably relatively easy to crack, even by manual typing one go after another. Is it possible to maybe add (if it's not already there) a function to block it after certain number of failed trials? I'd propose to disable startup for 24 hours after 3 f...
by szept
Mon Apr 08, 2024 10:06 am
Forum: EasyOS
Topic: Copy Easy to another pendrive? (Solved)
Replies: 12
Views: 743

Re: Copy Easy to another pendrive? (Solved)

If your current usb-stick is, say, /dev/sdb and the new one is /dev/sbc, then copy is simple: # dd if=/dev/sdb of=/dev/sdc bs=1M # sync One extra detail about the "dd' method. It might be best to bootup some other Linux, so that you are not running from the usb-stick that you want to clone. No...
by szept
Sun Mar 03, 2024 6:57 am
Forum: EasyOS
Topic: Python IDE for Easy?
Replies: 8
Views: 348

Re: Python in Easy

You can try going to the "View" drop-down menu and activating "Show Indentation Guides", which draws faint gray vertical lines at indentation points, which may help. I use it all the time in my code, it helps to easily see which indentation level a pair of widely-separated lines...
by szept
Sun Mar 03, 2024 6:50 am
Forum: EasyOS
Topic: Copy Easy to another pendrive? (Solved)
Replies: 12
Views: 743

Re: Copy Easy to another pendrive? (Solved)

Ok, I'll try that then!
Thanks a lot for help guys :)

Damian

by szept
Fri Mar 01, 2024 4:37 pm
Forum: EasyOS
Topic: Copy Easy to another pendrive? (Solved)
Replies: 12
Views: 743

Re: Copy Easy to another pendrive? (Solved)

# easydd <name of image file> Is one way of doing it. Run this to see aLI options: # easydd --help The reason for using Gparted to increase the working-partition, instead of letting EasyOS do it at first bootup, is to make sufficient room for copying the files, as described in my previous post. Yes...
by szept
Fri Mar 01, 2024 4:31 pm
Forum: EasyOS
Topic: Python IDE for Easy?
Replies: 8
Views: 348

Re: Python in Easy

Thanks for your answers guys! Keef Stogie don570 I'll probably use the online version then. I was looking for IDE, because I thought I need some kind of application to for example create a text file and fill it in. Hovewer I'm not a programmer, so maybe I get it wrong. I guess I'll just ask my progr...
by szept
Tue Feb 27, 2024 8:15 pm
Forum: EasyOS
Topic: Copy Easy to another pendrive? (Solved)
Replies: 12
Views: 743

Re: Copy Easy to another pendrive?

Well, you could create a new drive: # easydd easy-5.6.3-amd64.img Not sure if I get it right, so questions now... The # easydd starts easydd and then I follow instructions and this is how I normally create EasyOS live USB, so what the # easydd easy-5.6.3-amd64.img does? Same thing and that's just a...
by szept
Sun Feb 25, 2024 3:19 pm
Forum: EasyOS
Topic: Copy Easy to another pendrive? (Solved)
Replies: 12
Views: 743

Copy Easy to another pendrive? (Solved)

Hello, I know I can do an EasyOS backup inside EasyOS, but is there a way to do it automatically or semi-auto to another pendrive? I mean I'd like to make a 1:1 copy of my EasyOS on 32GB pendrive to another 32GB pendrive - with the whole system as well as all files. How to do it in the best way? I m...
by szept
Thu Feb 08, 2024 8:32 pm
Forum: EasyOS
Topic: Compiled Glibc-2.36 doesn't work in EasyOS versions 5.6.3 to 5.7(Solved)
Replies: 9
Views: 387

Re: Compiled Glibc-2.36 doesn't work in EasyOS versions 5.6.3 to 5.7

Medivia started with the command : /opt/glibc-2.36/lib/ld-linux-x86-64.so.2 --library-path /opt/glibc-2.36/lib:/usr/lib ./medivia Holy Moly - it finally works!!! Awesome job mate, thanks a lot! Medevia I missed you... /opt/glibc-2.36/lib/ld-linux-x86-64.so.2 --library-path /opt/glibc-2.36/lib:/usr/...
by szept
Tue Feb 06, 2024 9:17 pm
Forum: EasyOS
Topic: Compiled Glibc-2.36 doesn't work in EasyOS versions 5.6.3 to 5.7(Solved)
Replies: 9
Views: 387

Re: Compilation and use of Glibc-2.36 in EasyOS versions 5.6.3 to 5.7

@szept, you could install this pet and try again. Here we go! LD_LIBRARY_PATH="/opt/glibc-2.36" ./medivia ./medivia: /usr/lib/libc.so.6: version `GLIBC_2.36' not found (required by ./medivia) LD_LIBRARY_PATH="/opt/glibc-2.36:/usr/lib:/usr/local/lib" ./medivia ./medivia: /usr/lib...
by szept
Sun Feb 04, 2024 7:48 pm
Forum: EasyOS
Topic: Python IDE for Easy?
Replies: 8
Views: 348

Python IDE for Easy?

From time to time I have an irresistible desire to learn coding. On Windows I tried C++ in CodeBlocks. Now I wanted to try some Python. Is there an IDE in EasyOS? If not - what would you recommend to use? If 0 is someone who has never heard about programming (doesn't even know what C++ or Python is)...
by szept
Sun Feb 04, 2024 7:41 pm
Forum: EasyOS
Topic: Compiled Glibc-2.36 doesn't work in EasyOS versions 5.6.3 to 5.7(Solved)
Replies: 9
Views: 387

Re: Compilation and use of Glibc-2.36 in EasyOS versions 5.6.3 to 5.7

Caramel wrote: Sun Feb 04, 2024 6:55 pm

I need help for the problem of compiling and using a newer version of Glibc than the one installed.

Big thanks for your effort trying to help me out with Glibc mate! :)

by szept
Sun Feb 04, 2024 5:03 pm
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: glibc 2.36 plx

Try LD_LIBRARY_PATH="/opt/glibc-2.36" ./medivia or LD_LIBRARY_PATH="/opt/glibc-2.36:/usr/lib:/usr/local/lib" ./medivia or LD_PRELOAD='/opt/glibc-2.36/lib/libm.so.6' LD_LIBRARY_PATH="/usr/lib:/usr/local/lib" ./medivia LD_LIBRARY_PATH="/opt/glibc-2.36" ./medivi...
by szept
Fri Feb 02, 2024 11:05 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: glibc 2.36 plx

Could you try LD_PRELOAD='/opt/glibc-2.36/lib/libm.so.6' ./medivia instead of ./medivia ? # LD_PRELOAD='/opt/glibc-2.36/lib/libm.so.6' ./medivia ./medivia: /usr/lib/libc.so.6: version `GLIBC_2.36' not found (required by ./medivia) ./medivia: /usr/lib/libc.so.6: version `GLIBC_ABI_DT_RELR' not found...
by szept
Fri Jan 26, 2024 9:28 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: glibc 2.36 plx

start-medivia-glibc2.36-1.pet Theorically clicking on start.sh launches Medivia. If not we will try variants. Haven't been here for a while... Ok, so I installed latest .pet and I've got start.sh in Medivia folder, but it crashes as well. # ./medivia ./medivia: /usr/lib/libc.so.6: version `GLIBC_2....
by szept
Sat Jan 13, 2024 4:25 pm
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: glibc 2.36 plx

Caramel wrote: Fri Jan 12, 2024 6:45 pm

What is the text in the first line when you choose "Edit item" after right-clicking on the Medivia icon

Sorry, but where's Edit item?

Image

by szept
Fri Jan 12, 2024 5:57 pm
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: glibc 2.36 plx

New try with a fresh install of EasyOS 5.6.3 Success! New pet with the directory /opt/glibc-2.36 compiled in Easy 5.6.3 : Installation successfull, thanks a lot! Haven't tried Medivia yet, but will do? @szept, how do you start the program that needs glibc-2.36? A command, an icon or an entry in the...
by szept
Sun Jan 07, 2024 4:46 pm
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

glibc 2.36 plx

The Yocto/OpenEmbedded Scarthgap-series is scheduled for release in April. I am planning for EasyOS 7.x to be based on that, and will likely bring out a pre-release well before April. It has glibc 2.38. Wait, wait, wait... Does it mean I won't get glibc update until April 2024? What a pity... o.0 I...
by szept
Fri Jan 05, 2024 9:07 pm
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: EasyOS Kirkstone-series version 5.6.5

EasyUpdate look in http://distro.ibibilo.org/easyos/amd64/releases/kirkstone/2024 to see what the last EasyOs is. But there hasn't been a release yet in 2024 . To fix this, you can edit /usr/local/easy_version/easy-update. Change the line (line 63 in EasyOS 5.6.5, probably the same in 5.6.3) YEAR=&...
by szept
Thu Jan 04, 2024 11:12 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.7
Replies: 125
Views: 11939

Re: EasyOS Kirkstone-series version 5.6.5

Hello,

I just wanted do run auto-update of my 5.6.3, but I get this:

Image

How can I overcome this?

by szept
Mon Oct 16, 2023 9:23 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.5.5
Replies: 104
Views: 7779

Re: EasyOS Kirkstone-series version 5.5.5

BarryK wrote: Fri Oct 13, 2023 10:56 pm

Easy 5.5.5 released!

Both, wired and wifi are connecting automatically again! Thanks :)

Damian

by szept
Mon Oct 09, 2023 7:14 pm
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.5.5
Replies: 104
Views: 7779

Re: EasyOS Kirkstone-series version 5.5.4

Version 5.5.4 is out! Updated and I'm not sure was that the reason or something else happened, but my wired network is not connecting automatically, yay! I'll check wifi later. Thanks :) Ok, so it's connecting automatically, but only on the same settings, so if I'm on laptop and I manually do the w...
by szept
Mon Oct 09, 2023 9:43 am
Forum: EasyOS
Topic: Copy & paste doesn't work if copied text closed first
Replies: 3
Views: 540

Re: Copy & paste

BarryK wrote: Fri Oct 06, 2023 10:37 am

Parcellite is builtin, in the Desktop menu category.

Thanks! How to make it to run at startup? I assume I shall put something (Windows' shortcut equivalent?) into the /root/Startup/ folder, right?

Damian

by szept
Fri Oct 06, 2023 9:04 am
Forum: EasyOS
Topic: Copy & paste doesn't work if copied text closed first
Replies: 3
Views: 540

Copy & paste doesn't work if copied text closed first

If I close an app where I've coppied something from, e.g. notepad or browser and I want to paste it, it doesn't work. I have to have the app open to copy a text over. Is that an intentional behaviour? Because it's a bit inconvenient.

Damian

by szept
Wed Oct 04, 2023 8:33 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.5.5
Replies: 104
Views: 7779

Re: EasyOS Kirkstone-series version 5.5.4

BarryK wrote: Tue Oct 03, 2023 6:04 pm

Version 5.5.4 is out!

Updated and I'm not sure was that the reason or something else happened, but my wired network is not connecting automatically, yay! I'll check wifi later. Thanks :)

by szept
Mon Oct 02, 2023 11:34 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.5.5
Replies: 104
Views: 7779

Re: EasyOS Kirkstone-series version 5.5.3

@szept You should not be running 5.5.2, version 5.5.3 has important bug fixes. Note, to run the Internet Connection Wizard, right-click on the "net" icon. I have just tested SNS ethernet, it works great. Booted a pristine 5.5.3, ran SNS, chose the eth0 interface, got online no problem. Re...
by szept
Thu Sep 28, 2023 9:46 am
Forum: EasyOS
Topic: EasyOS Kirkstone-series version 5.5.5
Replies: 104
Views: 7779

Re: EasyOS Kirkstone-series version 5.5.2

Ok, did that, but another issue remains for 5.5.2 as well as 5.5.3 - I have to run the internet wizard everytime to get onto the wired connection. My testing of SNS has only been wifi. Didn't test Network Wizard at all. Intend to do some ethernet testing in a day or two. Have to dust off the router...
by szept
Thu Sep 28, 2023 9:20 am
Forum: EasyOS
Topic: Selecting multiple files in ROX-Filer
Replies: 9
Views: 554

Re: Selecting multiple files in ROX-Filer

I like the single-left-click behaviour, but as much I hate malfunctions in Rox...

Thanks guys for suggestions! :)

by szept
Wed Sep 27, 2023 10:17 am
Forum: EasyOS
Topic: Will Limine bootloader start Win10 without USB stick?
Replies: 6
Views: 645

Re: Will Limine bootloader start Win10 without USB stick?

Quick question about Limine:
Can I change the waiting time on a Limine bootloeader screen f.e. when it's waiting to load EeasyOS on a live USB start? If yes - how?

by szept
Wed Sep 27, 2023 9:58 am
Forum: EasyOS
Topic: Selecting multiple files in ROX-Filer
Replies: 9
Views: 554

Selecting multiple files in ROX-Filer

In Windows as well as linuxes with double-mouse-click to execute (e.g. Lubuntu) to selecet multiple files you can left click on the first one to select it and then you click on the last file with SHIFT and all these files are selected. I was trying to do it in EasyOS, but I canno't find a way to do ...

Go to advanced search