RISC OS On Raspberry Pi

Поделиться
HTML-код
  • Опубликовано: 20 янв 2025

Комментарии • 620

  • @mjdxp5688
    @mjdxp5688 6 лет назад +144

    I really love these alternate operating system videos, they really give an interesting look on the possibilities there could have been for operating systems today.

    • @THAT.RANDOM.GUY_
      @THAT.RANDOM.GUY_ 6 лет назад +4

      Perhaps someday we can have these OSs on distinct platforms. You never know. ;)

    • @ericwood3709
      @ericwood3709 3 года назад +2

      Yep. I kind of wish Apple would have managed to modernize their "classic" pre-Darwin Mac OS. It was a very elegant system that was just dogged by its lack of protected memory and preemptive multitasking, meaning that the whole system would often lock up if some bit of software misbehaved and having multiple apps running could be a real exercise in patience.

  • @matthehat
    @matthehat 6 лет назад +18

    RiscOS was the first GUI-based OS I ever used. The Acorn A3000s we had at school were truly amazing machines. My dad had a PC compatible at the time and I remember it blew his mind seeing them on parents evening. I still occasionally use RiscOS today on my Archimedes A440 whenever I fancy playing PacMania

  • @MrSoftypolimer
    @MrSoftypolimer 4 года назад +2

    This brings me back to my high school days.

  • @twoshedsjackson6478
    @twoshedsjackson6478 6 лет назад +44

    This video took me back to 1973 and writing BASIC programs on a teletype ( no visual display in those days ) connected between my school and the Hatfield Polytechnic DEC System 10. I must have been among the very earliest children taught "Computer Science".

    • @sayresyDevino
      @sayresyDevino 6 лет назад

      class of '78' here and I did ye olde computational magical elictrickery studies too... Been great seeing the technological advancement through the years. I still look at my setup in disbelief at times, lol

    • @roundel52
      @roundel52 6 лет назад +3

      I've been waiting for this video for a while. I had an Archimedes back in 1987, and it is amazing that a sub £20 machine now, runs RISC OS faster than the £1200 machine the OS and the ARM chip was invented for.

    • @sidewinder666666
      @sidewinder666666 6 лет назад

      You (and I) were, Frogmella..... I graduated High School in 1974, was programming in BASIC the prior year in the first "Computer Science" class my school offered. Wrote the programs on punch tapes using a teletype, then used acoustic coupler to the T.I.E.S. HP2000C2 system to run the programs and get the output.

    • @bob_._.
      @bob_._. 6 лет назад +2

      My school went that route early 1970, so I had 2.5 years with BASIC and XBASIC by graduation in '72.

    • @jonathanmaybury5698
      @jonathanmaybury5698 6 лет назад +2

      @@GoIdenApple That's because he does that thing where he pauses between bits of information, so that the information sinks in better, and it works well too!

  • @Desmaad
    @Desmaad 6 лет назад +32

    RISC OS is the OS that pioneered the contextual menu, for which we should be forever thankful.

    • @The_Ballo
      @The_Ballo 4 года назад +1

      Xerox Alto menus were contextual. Contextual menus predate global or app menus

  • @willyarma_uk
    @willyarma_uk 6 лет назад +25

    Yay RISC OS. I was beginning to think you were ignoring it but that was a great video and demonstrated it quite nicely. I'm very pleased you covered it. I had an Archimedes from 1990 (and a BBC before that) and spent every day programming it when I was a teenager. I still have those original computers.

    • @barneyrubble5633
      @barneyrubble5633 6 лет назад

      Still have mine as well

    • @stuartofblyth
      @stuartofblyth 6 лет назад +2

      Same here. A capacitor in my Model B's power supply blew up recently, but it's a common fault and there's a repair kit readily available.
      tinyurl.com/ycj55bgt
      A pity Interdictor II is missing from the App Store!

    • @willyarma_uk
      @willyarma_uk 6 лет назад

      Yep that happened to me, a very loud buzz and the most acrid smell ever, kept working tho! I found a kit online.

  • @starttherebellion9146
    @starttherebellion9146 6 лет назад +13

    I thoroughly enjoy every one of your videos Chris! I feel the world will be OK when I see you on the monitor and hear your reassuring voice and positive demeanor. You could make videos about anything, and I'd be happy watching them. Learning about new computer technology (and future trends on your other channel) is just a bonus! :D

  • @cdl0
    @cdl0 6 лет назад +25

    To keep the desktop tidy, open things using the right button, which closes the parent. Closing things with the right button will open the parent, and if I remember correctly, if you click on the close icon while holding either shift or ctrl (I don't remember which) then the parent opens without closing the child.
    The apps are directories (folders) that contain their resources, which generally follow a set structure. Hold down the shift key and double-click to open them instead of running them. There is normally a script called !Run that does whatever is needed to run an app, and another called !Boot that deals with the preliminaries when an app is first seen by the file manager. The icon images for the app are in a file called !Sprites. Installing apps is simply a case of copying the whole directory, and uninstalling is done by deleting the folder.

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +6

      Really interesting and really useful info, thanks. I read up as much as I could, but did not get this far! :) The right button open thing sounds neat. I will dig into the app folders too.

  • @SussexHistory
    @SussexHistory 6 лет назад +46

    I know it seems like a toy, but programming in BBC Basic under RISC OS is a much simpler way to develop for an embedded system. Whereas under Linux you'd have to develop in C, compile it, test it, compile it, test it, under RISC OS you can use the GPIO library with BBC Basic and it'll work just as fast! The topic of your next video is "Controlling LEDs with the Raspberry Pi using RISC OS"! Have fun!

    • @BernardUK
      @BernardUK 5 лет назад +4

      ​ ExplainingComputers : Yes, please do!

    • @beholder2012
      @beholder2012 Год назад +1

      Under Linux there is alternative: you can install TCC (Tiny C Compiler) which allows to treat source C-files like kind of „script” files provided that a) You set them executable, and b) You place in their very first line such kind of invocation: „#!/usr/bin/tcc -run” (optionally with additional arguments required for compilation on the fly, like „-lX11 -lpthread” for example).
      TCC is so fast, that there were even successful attempts to compile Linux kernel on the fly (well, it was at the time of 2.x or 3.x kernel line AFAIR). And it produces much smaller binary than GCC. OTOH there are a few situations when GCC is clearly better.

    • @AllensTrains
      @AllensTrains Год назад +1

      @@beholder2012 I don't know how RISC OS is doing these days. You might like to make a video explaining this point in more detail. Thanks for replying.

  • @jamz007ap
    @jamz007ap 6 лет назад +21

    Always Amazing Analysis. 2019 is off to an excellent start.

  • @chriholt
    @chriholt 6 лет назад +3

    Yet another fascinating and nostalgic look at an OS seemingly frozen in time. Thanks Chris!

  • @TheSulross
    @TheSulross 5 лет назад +8

    One of the great virtues of the early 80s micros is they tended to support having their power switch turned on and then boot (from ROM) immediately to a BASIC prompt. That characteristic made them great for novices to learn and explore.
    The RISC OS supporting the Raspberry Pi - where it boots (fairly quickly) from an SD card, and that the RISC OS provides a very quick and easy entry access to get to a BASIC prompt, I believe this combo (RISC OS and Raspberry Pi) comes closest of anything available today (other than antique retro hardware purchased off of eBay) to equaling that early 80s micro experience.
    And really it's superior than the early 80s micros in that the BBC BASIC is a much better dialect of BASIC than Microsoft BASIC (that was used in practically all the other early 80s era PCs). BBC BASIC is faster performing, as better structure programming capability, and is more full featured. If one is a neophyte and wants to learn an 80s BASIC, it's the one to learn.
    A;sp the RISC OS is rather nice all and all for an 80s GUI desktop OS. Very compact implementation (fast and lean). And unlike all the others from that era, the RISC OS itself still lives and breaths and is being maintained. If you go with Mac classic or Amiga, or Apple IIgs, etc., all those require finding retro hardware or buying rather expensive (and imperfect) hardware recreations or software emulation programs. Yet a modern, in production, Raspberry Pi can run the 80s era RISC OS (or modified variant thereof). That's almost unique (well, other than allowing that modern PCs can run MS-DOS - but not quite the same proposition).
    THIS NEEDS TO BE MORE OF A THING ==>> RISC OS/BBC BASIC running on very affordable Raspberry Pi
    Folks that is your ticket to getting a taste of retro computing - be an experiencer instead of just a passive on-looker

  • @TTULangGenius
    @TTULangGenius 6 лет назад +4

    I love the Pi’s versatility! I recently got a Raspberry Pi 3 B+with my Christmas money and am eager to try so many things on it (your channel was a factor in my decision to buy one).
    Going to try out RISC OS now! :)

  • @piers389
    @piers389 6 лет назад +8

    This was really interesting to watch and demonstrates an operating system from around the time I was born. Excellent video.

  • @marcusaureliusf
    @marcusaureliusf 6 лет назад +1

    I loved how you explained the basic functions of the user interface. Many other channels skip that part and I'm like "Wow, what do all these buttons do?"

  • @kjamison5951
    @kjamison5951 6 лет назад +2

    Thank you, Christopher. I found this informative as well as entertaining.
    I was introduced to RiscOS 2 in 1995 when I began working at a school. It was quite an intuitive system and although I was unfamiliar with it, I soon understood how to get the best from it.
    The biggest problem by far was the lack of printer drivers. Most new printers came with Windows or MacOS drivers. Our local Education Support Centre had to code drivers from scratch and then release them to schools - it usually involved a twenty minute drive to the centre to pick up the floppy disks. On the plus side, I got to have a conversation with one of the IT guys with whom I had been to FE college.
    The other problem was teachers in that department buying printers and then asking me to install them in classrooms. My first question was if they had driver disks for that printer and the answer was usually “Isn’t that your job to create the drivers?”
    Of course, it wasn’t. One printer sat in its box for three months until the IT support guys received enough requests for a driver to be written. They were busy guys and didn’t turn out drivers unless there was enough demand.
    Thankfully a shift in how IT was delivered in schools saw the Archimedes systems consigned to recycling while Windows XP computers replaced them and a new IT guy at the school took over.

  • @vladdracul1977
    @vladdracul1977 6 лет назад +5

    Great video. I remember the OS before RISC OS on the Acorn Archimedes. Arthur. Good times!

  • @39Kohm
    @39Kohm 6 лет назад +21

    I remember using RISCOS in school, I could not understand why anyone would ever use a PC at the time

  • @MarK-iw2xj
    @MarK-iw2xj 3 года назад +1

    Such an informative video
    Gives us the brief history and a quick crash course to get started I've watched this video over and over again and learn so much as a beginner
    Thanks for your upload

  • @esra_erimez
    @esra_erimez 6 лет назад +5

    Yet another fantastic video with Sunday morning breakfast. This is a wonderful introduction to RISC OS, anyone that is interested should look into interviews posted on RUclips with Sophie Wilson and Steve Furber. They are the architects of the ARM processor and RISC OS.

  • @aidandodds7672
    @aidandodds7672 4 года назад +4

    These videos are great, they remind me of the old OpenUniversity lectures that would appear on TV early in the morning in the 1980s.

  • @Kenny-bw2cz
    @Kenny-bw2cz 4 года назад +2

    Thank you Chris for your wonderful review...

  • @johnm2012
    @johnm2012 6 лет назад +2

    Another trip down memory lane. I started with a BBC Microcomputer back in the day and when it was launched I bought an Archimedes and, later, a Risc PC. BBC BASIC is wonderfully powerful and it even includes a built-in assembler. I didn't realise that RISC OS had finally been made open source. I'm going to dedicate a Raspberry Pi to running it.

  • @dashcamandy2242
    @dashcamandy2242 6 лет назад +4

    Seeing menu options flash upon selection... Oh, the fond memories of old Macintosh...

  • @drhlucas
    @drhlucas 6 лет назад +1

    What a trip down memory lane. I grew up with an A410 and an A3000 running RISC OS 4 and have very fond memories of playing all sorts games on them. Twin World and Zool were two of my faves. My dad switched to Mac in 1995 but at least one of those machines lived on and some years later my grandmother wrote her thesis on it.

  • @Abdulla79
    @Abdulla79 6 лет назад +3

    119MB for a whole OS? this alone make happy and excited, this video more than anything else remind me of the geeky years of the late 80s and the 90s, thank you sir, you gave me a reason to buy the Pi.

    • @cdl0
      @cdl0 6 лет назад +3

      The bare OS is under 4 MB. All the rest is bundled apps, resources, and other goodies.

    • @Abdulla79
      @Abdulla79 6 лет назад +2

      That's impressive, which makes me ask why Windows 10 need 18GB of space?

    • @onion2445
      @onion2445 6 лет назад

      ​@@Abdulla79 A massive, decades-old codebase with an insane amount of legacy support and backwards compatibility.

    • @Abdulla79
      @Abdulla79 6 лет назад

      Yeah i know that but i think there is more to it than that, and i think it's time to start new OS, offer legacy compatibility as a emulator for those who need it.

  • @jonathanthompson1184
    @jonathanthompson1184 6 лет назад +1

    Really good software, spotted it on the NOOBs SD card but wasn;t too sure about using it, you've inspired me to try it and it brings back the heady days of the 80's with the BBC BASIC!

  • @srtcsb
    @srtcsb 6 лет назад +1

    It's like a software version of vintage computing... I love it. Thanks for this one Chris, I look forward to trying it out.

  • @bradburns7380
    @bradburns7380 4 года назад +1

    Great video... this is exactly what I was looking for! Thanks for thinking outside the "modern" box and reminding us of the roots of how it was done back in the day. Great stuff.

  • @johnhaynes9910
    @johnhaynes9910 6 лет назад +10

    As ever Chris, great fun.

  • @BertGrink
    @BertGrink 6 лет назад +2

    Wow that OS looks really neat

  • @grahamerrington4328
    @grahamerrington4328 6 лет назад

    I tried using RISC OS last week prior to your video coming out and I was struggling a bit with a couple of things, I now know why. That middle mouse button was missing. Thanks for the video Chris it has come out at the right time for me. All the best for the new year to you, Mr Scissors and Stanley the knife.

  • @ChiragThakur09
    @ChiragThakur09 6 лет назад +3

    Thank you for introdusing us this unique OS..!!!!

  • @BernardUK
    @BernardUK 5 лет назад +2

    I've just looked through most of the comments here and added a new Reply to several where I though a useful note might be added. I realise that the original posters will be unlikely to return here, but it's possible that you, Chris, may resume coverage of RISC OS at some point, and I would encourage that :-)
    It's quite interesting how certain usability themes recur, and I've tried to rebut the misconceptions, as well as bringing issues of wi-fi and RISC OS hardware other than the Pi up to date. One or two other real users of the OS have done likewise, I'm pleased to see.
    The annual London RISC OS Show is happening tomorrow (26-Oct-2019) so we'll get all the latest updates, and perhaps be able to discuss the feasibility of producing our own RISC OS videos to complement this one of yours.
    Thanks, again, for giving RISC OS some oxygen of publicity. It looks like it was well worth the effort.

    • @ExplainingComputers
      @ExplainingComputers  5 лет назад

      Thanks for contributing to the comments here. This video is still generating steady traffic, so the comments are a useful resource. :)

  • @KowboyUSA
    @KowboyUSA 6 лет назад +3

    What gets my juices flowing these days is alternative operating systems.

  • @tinkmarshino
    @tinkmarshino 6 лет назад +1

    oh yeah..I had forgotten basic.. now I have to get another pi just to put the oisc set up on it to play .. and I love those oled games.. thanks Chris.. thanks for bringing back old memories...

  • @DoctorJ3kyll
    @DoctorJ3kyll 6 лет назад +5

    Another great video, although I feel bad now for binning my RiscPC 600 a few years ago. It cost me £2000 in 1994

  • @Datan0de
    @Datan0de 6 лет назад +1

    This is fantastic! It's like Acorn's OS has come full circle on Acorn's hardware. I can't wait to play around with this. I have a special place in my heart for lean & mean OS' that originally did wonders on modest hardware, like AmigaOS, BeOS, etc.

  • @billynightmare
    @billynightmare 4 года назад +1

    I purchased the very first version of the Raspberry pi 256meg SBC when it released, it runs riscOS super fast, I love this OS, it very weird after using windows for so many years but it not that hard to learn and basic is an awesome language to learn with.

  • @Jim-be8sj
    @Jim-be8sj 6 лет назад +2

    Wow. Great video. I've been around computers for a long time but hadn't heard of this OS before. I felt like I was in a time machine or a parallel universe or something. Very interesting as usual.

  • @sveinarsandvin6418
    @sveinarsandvin6418 4 года назад +2

    Lovely video. Thank you.

  • @davortrumbic3341
    @davortrumbic3341 6 лет назад +3

    Thank you, as usual, beautifully explaining things so that even an old dog like me understands everything :D

  • @dr_jaymz
    @dr_jaymz 6 лет назад +1

    I loved risc os, and it's amazing how well it aged, given the other os's from 1990.

  • @sassquadsteve
    @sassquadsteve 6 лет назад +3

    Thanks for creating this video. RISC OS was, and has the potential to be, a great operating system for the 21st Century. I can't think of any other OS specifically written for the ARM processor, so the fact that it is open sourced under the Apache 2 licence, means it can be given the shot in the arm it needs to make serious inroads into niche computing markets.
    I use Windows and Mac OS regularly, but do miss the immediacy and ease of use that was apparent in tools such as !Paint (the lack of Undo notwithstanding) and !Artworks (the latter formed the basis of Corel Xara/Xara Studio).
    It's definitely worth a try!

  • @SergiuszRoszczyk
    @SergiuszRoszczyk 6 лет назад

    It took only a week to get yet another awesome video ❤️
    It shows how ingenious Acorn machine was back then including standard VGA modes and video output.

  • @holyravioli5795
    @holyravioli5795 4 года назад +2

    Wow thats a fast OS, look how fast it starts programs!
    Its actually insane how snappy this OS is.

    • @ExplainingComputers
      @ExplainingComputers  4 года назад +1

      Yes, old-fashioned, well-optimised code.

    • @holyravioli5795
      @holyravioli5795 4 года назад +3

      @@ExplainingComputers I wish windows was this optimized :(

  • @area68junglist41
    @area68junglist41 3 года назад

    I love you Chris for showing this install, it answered all my questions, and the mystery of a need for 3 button mouse,..thanks Love cheers

  • @stevecharlton3271
    @stevecharlton3271 6 лет назад +3

    Happy new year Chris awsome video as always

  • @C-MAGs
    @C-MAGs 6 лет назад +7

    Retrotastic. I love these alternative OS vids. Makes you wonder what actually makes one become "the one." Life today could be so different if just one other of these OS's had been taken up by more people first. Timing? price? Ease of use? Advertising? Why did "we" go for DOS and then 3.1? Hmmm.

    • @totalermist
      @totalermist 6 лет назад +1

      Short, simple and correct answer: Microsoft. They basically bullied manufacturers and resellers into shipping with DOS and Windows.

    • @factorylad5071
      @factorylad5071 5 лет назад

      R0lica It's because the general cross section of the computer buying public prefers to be spoon fed , they do not like reading manuals and want some thing that works straight out of the box, no questions. Having an inferior computer that works (like the 8086) , is a price they are willing to pay, as they do not use it seriously anyway.

    • @maxxdahl6062
      @maxxdahl6062 3 года назад

      That and Acorn never had any foothold in the US. I heard they THOUGHT about bringing their computers and OS here to the US, but then decided against it.

  • @SeverityOne
    @SeverityOne 6 лет назад +13

    "...this is novel, we don't have that in other operating systems..."
    Except in the Amiga's Intuition since 1985. 🙂

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +5

      Yes, as an Amiga user for many years, I should not have forgotten this! :)

  • @ericartman0
    @ericartman0 6 лет назад +7

    Funny, back in the day, I worked at Silicon Graphics building RISC computers and one of my favorite basic programs was "Simon's Basic" on my Commodore 64. Yeah I'm old, thanks for the memories.

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад

      I remember those SG machines, I knew a group who used them for early VR research.

    • @hydrochloricacid2146
      @hydrochloricacid2146 6 лет назад +1

      You were part of the MIPS team?

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад

      I was based in the Business School in the University of Nottingham, and next door was the Computer Science Department. There a project under Steve Benford did a lot of quite pioneering work on VR in a project called the ACE (Advanced Computing Environments) Lab. I visited on a few occasions -- even filmed there! -- as I wrote the first UK e-business book in the mid 1990s, so we often talked about collaborations.

    • @MarkTheMorose
      @MarkTheMorose 6 лет назад +1

      @@ExplainingComputers www.nottingham.ac.uk/ComputerScience/People/steve.benford ?

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад

      That's the man! A great guy. He had several Silicon Graphics workstations at the time doing various VR stuff. I left the university in late 2015, so have not seen him since.

  • @RolaDsigns
    @RolaDsigns 6 лет назад +1

    what a nice little os! , very well explained , amazing video as usual!

    • @johnlancaster2598
      @johnlancaster2598 6 лет назад

      Its very fast, compact, & efficient. In the early days the interpreted BBC BASIC running under RISC OS on the Acorn Archimedes was far faster than similar compiled languages on the Apple Macintosh. I had a very capable Desk Top Publishing package (included a sophisticated word processor) that was actually smaller the M$ Word for windows document READER program (that's reading & displaying word docs, no edit abilities).
      When Oliveti took over Acorn the new management couldn't really understand the idea of a non IBM compatible PC, so eventually it was sold off (allowing major shareholding in its former ARM subsidiary to be sold). Since then RISC OS development has been slow, until recently. Now a lot of catch-up development is being done, and some businesses are seriously evaluating using the operating system.

  • @abzzeus
    @abzzeus 6 лет назад +4

    RISC OS is a true Windows Icon Menus Pointer, OS vs windows where you can do a lot with ALT keys!
    Also if you look at the file system it has type then ID, so that you don't run into Windows 26 drive letter issue. Plus there are the fonts based on Bezier curves which mean each font is scalable in 0.001 pt increments.
    You touched on the ! which is a directory it just has a ! at the start which makes it an app (Like OS X uses .app) in the directory there are files that set up the app for use on the system no need for a registry! Installing is just copy it over. There's a lot to like about RISC OS and that's from 1987!

    • @pearcomputers
      @pearcomputers 4 года назад

      more is yet to come and soon, 5.28 >> www.riscository.com/2020/rpcemu-risc-os-direct/
      .
      but first, what do you grow in an orchard?

  • @Nerd3927
    @Nerd3927 6 лет назад +1

    Oh that brings up memories.... How I loved my Acorn Atom with the BBC basic Rom. The Atom itself was sweet as well. You could switch into 6502 Assembly just by putting it in square brackets. At 1 Mhz clock speed that was very welcome to speed things up.

  • @kathleenbelgacem8515
    @kathleenbelgacem8515 5 лет назад

    Thank you so much for this video. I like Risc OS and being able to run it on the Raspi is very nice. Thanks also for having remind that the middle button of the mouse has an important feature (Which is was completely out of my mind prior I see your video)

    • @BernardUK
      @BernardUK 5 лет назад

      The Menu (middle) mouse button is similar to the right button under other systems. RISC OS calls its right button Adjust as it provides an action that is an altered version of the left (Select) button, e.g. scrolling in the opposite direction, marking the end of selected text, and many other ergonomic functions as appropriate to the task.

  • @matthewdu2586
    @matthewdu2586 6 лет назад +1

    The vintage looking GUI is really cool!

  • @RamkrishanYT
    @RamkrishanYT 6 лет назад +1

    Thanks for explaining the Risc arch

  • @1974UTuber
    @1974UTuber 6 лет назад

    Great video with great information as always Chris.
    2019 is looking good already.
    Thanks for the CISC & RISC explanation as well.

  • @NicoDsSBCs
    @NicoDsSBCs 6 лет назад +16

    Hello Christopher. Now that`s a fitting OS for the Raspberry. Good to be diverted :)
    I`ve got 4k video working in Linux on the RK3399`s. But it breaks Kdenlive. The same problem as with TinkerOS. RockchipMPP(kind of video driver for Rockchip VPU) seems to cause it. I`m trying to fix it, not sure if I can.
    I also ordered a new better camera. I`ll wait for that for my video editing video. Too bad light now for my cheap camera. Greetings, have a nice day.

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +12

      H Nico. It sounds like we are at the opposite ends of the SBC world this week! You in 4K, and me running MODE 7 and BBC BASIC. :)

    • @thatscienceguy9458
      @thatscienceguy9458 6 лет назад

      Kdenlive is a crap. Any one who edits video knows better to use that pos.

    • @NicoDsSBCs
      @NicoDsSBCs 6 лет назад +1

      @@thatscienceguy9458 Everybody has the right to have his own opinion. But spuwing opinions without articulating why brings little to no information to nobody. I edit video's and I like Kdenlive, so what you said is untrue. "Any one who edits video knows better to use that pos."
      Have a nice day.

  • @jesuscardona5184
    @jesuscardona5184 6 лет назад +1

    The best computer youtuber of the earl.

  • @jeremypb2008
    @jeremypb2008 6 лет назад +32

    I believe Acorn showed RISC OS to Bill Gates, but he wasn't too interested except for the icon bar which later made its way into Windows '95 as the Windows taskbar.

    • @roundel52
      @roundel52 6 лет назад +2

      Apparently a few years earlier the boot was on the other foot when Bill was trying to sell MSDOS to Acorn for the BBC micro or something... Hermann Hauser replied "why would we want MSDOS when we have MOS?" Ans and Bill went back to Seattle with his tail between his legs

    • @robinhodson9890
      @robinhodson9890 4 года назад

      They also had to explain to him what a network was.

  • @kemi242
    @kemi242 6 лет назад +1

    I knew RISC OS was available on the RPi, but I didn't know much about it. Thanks!

  • @Ograws
    @Ograws 6 лет назад +1

    Even though I know I'll never use an OS like this, it's still interesting to see what old OSes were like from before I was even born

  • @TheNZJester
    @TheNZJester 6 лет назад +1

    Takes me back to my early ZX81 & ZX Spectrum days writing basic programs or copying in the basic code from the pages of one of the magazines. Before it came out on tape Manic Miner was originally printed in a magazine.

  • @richardcreese
    @richardcreese 6 лет назад +3

    Seeing Basic takes me back. I started on a ZX81 and continued through to VB.net but when I dropped Windows from my life , I switched to Python and C+ f or Arduino. Think it worth a look as I only have to swop SD cards.

  • @studiokadaver
    @studiokadaver 6 лет назад +3

    You can do that foreground/ background window swapping in every variant of Amiga OS.

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +1

      I know, I really should have remembered that, as I was a long-term Amiga user. :)

    • @studiokadaver
      @studiokadaver 6 лет назад +2

      I just wish they’d implement WiFi under RISC OS

    • @BernardUK
      @BernardUK 5 лет назад +1

      @@studiokadaver Elesar have (October 2019) announced a WifiHAT for RISC OS on a Pi.

  • @lmlmd2714
    @lmlmd2714 4 года назад +4

    I love Risc OS. When I was a kid I hated it as it was the "School computer" and wanted nothing to do with it at home, where it was Atari TOS all the way, but now, I love the elegance and attention to aesthetics of the UI, and the simplicity of the structure. It's all round a very elegant system compared to the painfully self-conscious over-styalised MacOS or the, to be blunt "fugly trainwreck" aesthetic of Windows.

  • @jonmahashintina
    @jonmahashintina 6 лет назад +58

    Real operating systems come with a programming language included.

    • @ozgurkarter4368
      @ozgurkarter4368 4 года назад +1

      @Lee its most probably better than commodore basic.

    • @cokeforever
      @cokeforever 4 года назад +1

      language is what you speak, it is a property of you as a programmer; in case of basic and this os you would rather say 'interpreter', but you may also need a compiler and a linker ;)

  • @michaelclay3958
    @michaelclay3958 6 лет назад +1

    I was watching another video last week talking about how Microsoft and Apple where getting behind the ARM architecture. This would be a good time to bring the RISC OS up to-date. I read a few of the forums on the RISC OS web site and there is talk about it.

  • @rtesimpson
    @rtesimpson 6 лет назад +1

    Great video Chris...Would love to see a show on the Anki Vector...

  • @retropcscotland4645
    @retropcscotland4645 6 лет назад +1

    OMG I did BBC programming at college many moons ago. The old BBC computers with the cd sized floppy drives.
    What an interesting video thank you.

  • @batlin
    @batlin 5 лет назад +1

    That's fascinating. I was intrigued by the futuristic (in the early 1990s) user interface on the Acorn Archimedes, which I encountered only in one or two shops at the time (Clery's in Dublin city centre comes to mind). Looking back now it's reminiscent of how the Amiga's Workbench was way ahead of its time. Back then I had moved from a Commodore 64 to the Atari ST (and some exposure to DOS and Windows 3.11 on my friend's 486 PC), and had no idea how much better things could be.
    Sort of a shame RISC OS (and the Amiga's Workbench) didn't have more commercial impact, as I think we might be in a better place today.

  • @911Salvage
    @911Salvage 5 лет назад +2

    I love your sarcasm.

  • @FAMUCHOLLY
    @FAMUCHOLLY 6 лет назад +4

    You sir, are VERY good at explaining all things computer related. You should be a teacher... 😉

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +1

      Thanks. I have been a university lecturer for about 28 years. :)

    • @FAMUCHOLLY
      @FAMUCHOLLY 6 лет назад

      @@ExplainingComputers Yep. A good one at that....😉

  • @MrOtreasure
    @MrOtreasure 5 лет назад +1

    Thank you very much for this spot, I just look for nice things to bring the RaspBerry closer to my gandchildren. It remenbers me to the good old time with my Pat 1979 and the first 8KB programms.

  • @stevieray2804
    @stevieray2804 5 лет назад

    I really enjoyed this segment

  • @matarey-u8k
    @matarey-u8k 6 лет назад +10

    Honestly, the style of windows in this OS reminds me of the era back to Windows 3.x.

  • @medworthy
    @medworthy 6 лет назад

    @ExplainingComputers / Christopher.
    Wow, talk about a blast from the past. I was a big fan of the Amiga, Atari ST, the classic Apple Macs and the Acorn Archimedes (also being a kid back in the 1980's that was taught in British schools, I fondly remember the education / Acorn BBC project).
    ARM processors and RISC based operating system, let's live like it is the early 1990's again :-)
    (btw, I learnt some Forth, Lisp, Assembly and BASIC using BBC B's and BBC Master computers)

  • @papeleradereciclaje4375
    @papeleradereciclaje4375 4 года назад +3

    I love how the SD Card is just like :0

  • @mrrolandlawrence
    @mrrolandlawrence 6 лет назад +2

    Wow thats taken me back! Where was the Zarch / Lander demo? Used to have the A440/1 when it 1st came out :) Also programmed ARM assembler. My machine came with Arthur 1.2 before I was able to do a chip replacement to get a new version of RISC. Imagine my surprise when i got into the latest and greatest in the PC world only to find it was 16 bit and not really multi tasking....

  • @theoldman6
    @theoldman6 6 лет назад +2

    I will have to try that on my Raspberry Pi Good Show as always and RISC looks very interesting :)

  • @TomMannCenturia
    @TomMannCenturia 6 лет назад +1

    Genuinely fascinating. Thanks.

  • @Zhixalom
    @Zhixalom 6 лет назад +1

    That send-window-to-background button can be found in the Workbench OS for the good old Commodore Amiga as well. A new updated and cleaned up version of which has actually just been released a few month ago. Of course we need an Amiga with the new Kickstart v3.1.4 EPROM to run it... I guess we could run it on a Raspberry PI 3 B+ via one of the Amiga emulators for RetroPie.

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +1

      I know, I really should have remembered that, as I was a long-term Amiga user. :) I must make an Amiga video here one day, and try out the new version of Workbench.

    • @Zhixalom
      @Zhixalom 6 лет назад

      @@ExplainingComputers It is a hobby for me... dabbling with the old retros like the Spectrum, C64, C128 and the Amiga. I enjoy fixing, upgrading and modding them.
      You're videos have been quite helpful in wrapping my head around the different models of Raspberry Pi. Which I've used both with RetroPie, but also lately to emulate the Commodore 1541 floppy drive up against real C64/C128s via a level-shifter hat called the Pi1541 IO adaptor. It is essential that the PI has enough proccessing power to get the timing of the 1541 right. So you need at least a PI 3, 3A+ or 3B+. The PI 3A+ actually fits the PI1541 hat the best, because of its size and lesser power consumption. Anyway, you have helped me realize these things with your videos.
      I've already setup an A600 and 2 A1200s with the new Workbench and will be happy to help out if you find you need it.

  • @jmtikka
    @jmtikka 6 лет назад +1

    On the X Window System (used on many operating systems such as Unix, VMS, GNU/Linux) middle clicking the window title bar traditionally sends the window to the background. For some unimaginable reason on some modern user interfaces like Gnome this is not enabled by default. I can't say whether this idea was first introduced in RiscOS or X. In 1986 the uwm window manager was made the default windows manager on X10R3 and it had this feature although it had no title bars to click. The twm window manager that was made the new default on X11R4 in 1989 had title bars and the middle click to background function.

  • @thejunks3597
    @thejunks3597 6 лет назад +3

    Feels like an early 90s BBC show

  • @linuxlizard
    @linuxlizard 5 лет назад +1

    Thanks for taking a RISK for explaining RISC

  • @redtails
    @redtails 6 лет назад

    you can definitely tell the appstore was written later than the other apps. It actually just opens when you activate it, instead of that weird background-open thing that the older apps do.

  • @statorworksrobotics9838
    @statorworksrobotics9838 6 лет назад

    Haha this is exactly what I needed this moment Chris, thanksss🙋👍👍👍
    I love the small footprint. Those multi-gigabyte 'light' Linux distributions are a bit obscene.
    Edit: Ooops, spoke two soon, after decompressing it's 2 Gigs, bummer :(

  • @SamTornado1701
    @SamTornado1701 6 лет назад +1

    I don't know why, but I find OSs to be very fascinating.

  • @dowskivisionmagicaloracle8593
    @dowskivisionmagicaloracle8593 6 лет назад +1

    Grand fun! It has all the signs of an OS whose technological substrate evolved faster than it could to keep up but it just refused to die.

  • @michaeloconnor7786
    @michaeloconnor7786 6 лет назад

    Hello Chris
    Good to see you show Risc OS running on the Raspberry Pi. While today it does not have a glamours look to it, it still far outshines current operating systems in some areas. Mainly the put the window behind, and the drag to save, which you showed.
    Beats the hunt in windows 'save' to navigate to the folder you already have open. However you could show some more tricks, such as, for example you can save a document into another open document. There is no cut and paste as such. To merge two files, just open one and drag the other into into it. Instant merge.
    The part of the OS applications Paint and Draw which go way back to the early 1990's still by far beat Windows versions to this day.
    Now you did show it could run Basic. Risc OS runs "BBC Basic" which is very sophisticated over normal dialects of Basic. So much so, I have often wondered is there is any link between BBC Basic and Python. Take a look, as I feel they are very similar.

    • @BernardUK
      @BernardUK 5 лет назад

      You're so right about file saving! Actually most apps and the OS now support standard copy/cut/paste for text and graphics, and the developers have a project to complete the functionality. The point about Draw is worth emphasizing because its vector graphic format is supported system wide and is also used by some apps for import and export. Python currently is 2.7.2, altough there's talk of porting 3.8.

  • @heidirichter
    @heidirichter 6 лет назад +30

    You said "we don't have that in other operating systems" regarding the window depth gadget. I'm sorry, but that isn't true, Amiga OS had 2 window depth gadgets (window to front, window to back) in the various 1.x versions of the operating system (technically, in the Kickstart 1.x portion), while this was simplified to just one depth gadget (a toggle between to front and to back) in versions 2 onwards. Given that AmigaOS was first released to the world in 1985, this pre-dates RISCOS using this same thing in 1987...

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +20

      Yes, you are correct. My bad. And I should have known this, as I was an Amiga user for many years.

    • @rationalityfirst
      @rationalityfirst 6 лет назад +1

      KWin has that function too

    • @ArumesYT
      @ArumesYT 6 лет назад +5

      @@ExplainingComputers Also, if you click on a window border or the title bar in XFCE or GNOME with the middle mouse button, you send it to the back. And I'm pretty sure other desktop environments have a similar feature.

    • @send2gl
      @send2gl 6 лет назад +4

      There are so many 'not so obvious' functions in most software no-one could possible know everything, not even Chris 😎

    • @ninline2000
      @ninline2000 6 лет назад +3

      The one thing Amiga did that I've never seen any other computer was screens. You could grab the top of the screen to reveal a screen behind the screen, each with it's own windows and resolution. It was useful in many ways. That was in the hardware though, not possible with a video card as far as I can remember. Haven't used my Amiga much since I went to Linux in '99.

  • @tygattyche2545
    @tygattyche2545 6 лет назад +2

    And since 1994, i started with an A5000, RISC OS is my every day OS...
    Perhaps you should make a second video about this unique GUI, specialy the game of the mouse buttons "select" and "adjust".

  • @sethrd999
    @sethrd999 6 лет назад +1

    Last time I saw a screen like that was on an Archimedes 5000 that I was fortunate to get a hold of. Just like with the Amiga/Motorola combination I found Arm Assembly very pleasent unlike intel 8086/x86.
    Its cool that more software that would be labled abandonware is now opensource, alot of lessons learned over time thats for sure.
    Nice video to start the year out with,

    • @davidkatelansky5694
      @davidkatelansky5694 6 лет назад

      MASM has a lot of baggage, but I used to write in A86 (a shareware assembler) and thought it was the best language I'd ever seen (up to that time). I've written plenty of C programs on RISC systems (Alpha and AS/400 PowerPC - and lately my Raspberry Pi) but no assembler.

  • @toddhagist8395
    @toddhagist8395 6 лет назад +1

    Thank you for your time, nice video

  • @Go.el_Hadam
    @Go.el_Hadam 6 лет назад +1

    Great video as always.

  • @zyborg47
    @zyborg47 6 лет назад +1

    In workbench on the Amiga it was possible to send windows to the back or front of another one, just like in risc OS. A mate of mine had and still have got an Acorn Archimedes a nice machine in the day.,
    .

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +1

      I know, as a long-term Amiga user, I should have remembered this!

  • @y2ksw1
    @y2ksw1 6 лет назад +8

    Great to know where Doom runs out of the box! 😊

  • @SuperHaunts
    @SuperHaunts 6 лет назад +2

    I figured out the problem! The OS doesn't like my wireless mouse! I changed to a hardwired USB mouse, and now things are responding as it should with good speed! No problem w/Rasbian, or any other PI os, just this one. Passing on the findings...

  • @jimviau327
    @jimviau327 6 лет назад +1

    Nice vid Chris! Thanks. I wish you could make an introduction on how to address Pi IO port via Basic. Then one can make simple automation programs in Basic.

    • @ExplainingComputers
      @ExplainingComputers  6 лет назад +1

      Nice idea for a future video, noted.

    • @BernardUK
      @BernardUK 5 лет назад +1

      RISC OS includes general support for the Pi's GPIO and specific support for its I²C. We can demonstrate the SenseHAT, for example, using BASIC.