'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

OS/2

OS/2 is a series of computer operating systems, initially created by Microsoft and IBM, then later developed by IBM exclusively. The name stands for "Operating System/2", because it was introduced as part of the same generation change release as IBM's "Personal System/2 (PS/2)" line of second-generation personal computers. The first version of OS/2 was released in December 1987 and newer versions were released until December 2001.

OS/2 was intended as a protected mode successor of PC DOS. Notably, basic system calls were modeled after MS-DOS calls; their names even started with "Dos" and it was possible to create "Family Mode" applications: text mode applications that could work on both systems. Because of this heritage, OS/2 shares similarities with Unix, Xenix, and Windows NT in many ways.

OS/2 is no longer marketed by IBM, and IBM standard support for OS/2 was discontinued on 31 December 2006. It has been since maintained with relatively few new features under the name of eComStation.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/OS_2

Podcasts:

  • The Fall of OS/2

    IBM had unknowingly created a juggernaut when they allowed Bill Gates and Microsoft to control the PC operating system standard, first with DOS and then with Windows. Having lost control of the PC hardware standard, IBM was determined to regain control of the operating system standard. Their weapon? The OS/2 operating system, a powerful and feature packed operating system that best case should have had little trouble overcoming Windows, and worst case should have at least been able to carve out a profitable and sustainable market share. This is the story of how IBM's last attempt to keep a measure of control in the PC space...failed. Note: the first part of OS/2’s story can be found in part 3 of the Rise and Fall of the IBM PC https://youtu.be/4lI_GmHcj8A Substack script link https:/...

    published: 01 May 2023
  • ArcaOS - A Modern Version of IBM’s OS/2 (Overview & Demo)

    You might think OS/2 is long gone, but it still lingers around in more places then you'd expect. Today's video covers ArcaOS, an OS/2-based operating system designed to work with newer hardware! ArcaOS: https://www.arcanoae.com/arcaos/ ● Gear I use to make these videos: https://www.kit.co/mjd Camera: https://amzn.to/3ipyKc5 Tripod: https://amzn.to/3pqxycn Microphone: https://amzn.to/35UbkXb Editing Software (Premiere): https://amzn.to/39kawfS Thumbnail Editor (Photoshop): https://amzn.to/3lVqVN6 ● Affiliate Links (these links will earn me a commission if you purchase something through them at no additional cost to you): Get a FREE 30-DAY TRIAL of Amazon Prime: https://amzn.to/2xVmMB3 Get 2 FREE Audiobooks with Audible: https://amzn.to/2Ovylse Try Twitch Prime for FREE: https://amzn.to/3...

    published: 19 Jan 2023
  • LGR Tech Tales - IBM OS/2's Fight Against Windows

    This episode covers the inception, development, and strive for market dominance of IBM and Microsoft's OS/2 operating system. Join me in LGR Tech Tales, looking at stories of technological inspiration, failure, and everything in-between! ● Consider supporting LGR on Patreon: http://www.patreon.com/LazyGameReviews ● Social links: https://twitter.com/lazygamereviews http://www.facebook.com/LazyGameReviews ● Photo credits: The Computer Archive https://www.youtube.com/TheComputerArchive ● Music credits: "Milinda" by Diode Milliampere http://diodemilliampere.bandcamp.com/album/psychic-pizza-connection "Twin Shine" by Silent Partner https://www.youtube.com/audiolibrary/music

    published: 27 Mar 2015
  • A Better Windows Than Windows: An OS/2 Warp 3 Retrospective!

    Let's install OS/2 Warp 3 from 1995 on the World's Fastest 386 and see what it can do! In this video, we'll explore some DOS/Win3.X multitasking, OS/2, and the history behind IBM's forgotten operating system! 00:00 Introduction 00:35 Background on OS/2 09:43 OS/2 Bare Metal Install 18:28 Gaming on OS/2? 22:19 Concluding Thoughts ● World's Fastest 386 Specifications: Alaris Cougar II Motherboard (Rev. B?) (See UH19 for specs of the board: http://www.win3x.org/uh19/motherboard/show/438) 75MHz IBM 486BL3 "Blue Lightning" (See Redhill's CPU Guide for more on the BL3: http://www.redhill.net.au/c/c-5.html) Cyrix Fasmath CX-83D87-40GP 32MB Fast Page Mode 72-pin SIMM RAM (2x16MB sticks) 32GB Compact Flash Card Trident TGUI9440-1 VLB Video Card w/ 1MB FPM RAM Kingston NE2000-compatible Plug n' ...

    published: 22 May 2021
  • The Computer Chronicles - OS/2 Warp (1994)

    Special thanks to archive.org for hosting these episodes. Downloads of all these episodes and more can be found at: http://archive.org/details/computerchronicles

    published: 01 Aug 2013
  • ArcaOS: Using Modern OS/2 - Install and Review

    Get 2 months of Readly for FREE then just £7.99 a month after the 2 months has ended. This can be canceled any time, please use my link https://readly.me/danwood - Thanks to Readly for sponsoring this video. OS/2 was an operating system that was once expected to change the world, and had a real shot of being the standard operating system for PCs. ArcaOS is a new, OS/2 based operating system, designed to run on modern PCs - I give it a try! ArcaOS: https://www.arcanoae.com/ Rexx: https://en.wikipedia.org/wiki/Rexx OS/2 World: https://www.os2world.com/cms/ My retro gaming podcast: http://theretrohour.com My Twitter: http://twitter.com/danwood_uk My Facebook: http://facebook.com/danwooduk ▬ Contents of this video ▬ 0:00​ - Intro & Brief OS/2 & ArcaOS History 3:54 - ArcaOS Install 7:...

    published: 18 Sep 2021
  • Installing the Last Version of IBM OS/2 on the $5 Windows 98 PC

    Download Dashlane for free on your first device by clicking here: http://bit.ly/2PxXthI and automatically get a 30 day free trial of premium! No credit card required at signup! Thanks to Dashlane for sponsoring this video! ● Liked this video? Subscribe for more: http://mjd.yt/subscribe It's a better DOS than DOS, and a better Windows than Windows! Today, we're gonna be trying to install the last version of IBM's OS/2 operating system on the $5 Windows 98 PC. Let's s̶t̶a̶r̶t warp! ● Join our forum community: https://osforums.net ● Gear I use to make these videos: https://www.kit.co/mjd Camera: https://amzn.to/2K5ia3D Tripod (mine is discontinued): https://amzn.to/2IcI6YM Smaller Tripod: https://amzn.to/2UfLAk9 Microphone: https://amzn.to/2XrmZdb Editing Software (Premiere): https://amzn...

    published: 20 Dec 2019
  • The Computer Chronicles - OS/2 (1993)

    Special thanks to archive.org for hosting these episodes. Downloads of all these episodes and more can be found at: http://archive.org/details/computerchronicles

    published: 01 Aug 2013
  • FIZ 2 MANEJOS NOVOS E OS 2 VIDEOS BATERAM MAIS DE 4 MILHOES DE VISUALIZAÇÃO

    Esses são os 2 vídeos que mais deram visualização no canal 1- DEIXEI LIMÃO DENTRO DA COLMEIA 168 HORAS (NÃO ACREDITEI NO RESULTADO) No vídeo falei sobre o fato do acaro varroa ser um género de ácaros ectoparasitas que infesta diversas espécies de abelhas do género Apis e que pode ser controlado com suco de limão rico em ácido cítrico deixado dentro da colmeia. Falei também que o limão representar até 7% de ácido cítrico no suco. Que o ideal seria usar o ÁCIDO OXÁLICO por ter maior eficiência. Mas que deixando o limão dentro da colmeia por 168 horas, o apicultor não vai acreditar no resultado. 2- 1 CABEÇA DE ALHO, 2 FORLHAS DE PAPEL E XAROPE PARA UNIR 2 ENXAMES SEM BRIGA DAS ABELHAS (PARTE 01) No vídeo falei sobre unir dois enxames de abelhas, que o apicultor tem a opção de usar varias es...

    published: 18 Aug 2023
  • STREAM ARCHIVE: Upgrading Through Every Version of OS/2

    So, you know what YouTube needs? More OS/2 content. You know what I've never seen documented (in video form): upgrading through every version of OS/2. Is it even possible? I have absolutely no idea. Starting with a 286 based system and Microsoft OS/2 1.0, the plan is upgrade through each 16-bit version (in PCem) of 1.0, 1.1, 1.2, and 1.3, to the 32-bit versions (2.0, and 2.1), then Warp, Warp Connect, and finally OS/2 4.52. There's no official upgrade path to eCommStation or ArcaOS, so that will have to wait until a future video. We might also try some interesting quirks of OS/2 such as installing Windows 3.0, testing some backwards compatibility and more. Ideas are welcome as we go along. NCommander's Socials: Twitter: https://twitter.com/FOSSfirefighter Discord: https://discord.gg/V8...

    published: 26 Apr 2021
The Fall of OS/2
1:39:21

The Fall of OS/2

  • Order:
  • Duration: 1:39:21
  • Uploaded Date: 01 May 2023
  • views: 335524
IBM had unknowingly created a juggernaut when they allowed Bill Gates and Microsoft to control the PC operating system standard, first with DOS and then with Windows. Having lost control of the PC hardware standard, IBM was determined to regain control of the operating system standard. Their weapon? The OS/2 operating system, a powerful and feature packed operating system that best case should have had little trouble overcoming Windows, and worst case should have at least been able to carve out a profitable and sustainable market share. This is the story of how IBM's last attempt to keep a measure of control in the PC space...failed. Note: the first part of OS/2’s story can be found in part 3 of the Rise and Fall of the IBM PC https://youtu.be/4lI_GmHcj8A Substack script link https://anotherboringtopic.substack.com/p/the-fall-of-os2 Substack extended thoughts link https://anotherboringtopic.substack.com/p/fall-of-os2-extended-thoughts 00:00:00 Intro 00:05:36 OS/2 1.3 00:11:42 Jim Cannavino 00:20:49 OS/2 2.0 00:26:36 Taligent 00:29:00 The Trojan Horse of Windows Compatibility 00:34:49 OS/2 2.1 00:42:00 OS/2 Warp 3 00:46:18 OS/2 Specific Publications 00:52:49 OS/2 Professional Warp 3 Coverage 01:01:05 The Warp Marketing Disaster 01:15:25 The OS/2 Implosion 01:23:37 OS/2 Warp PowerPC 01:25:27 OS/2 Warp 4 01:34:27 ArcaOS 01:36:04 Wrap-Up and Final Thoughts https://www.buymeacoffee.com/AnotherBoringTopic
https://wn.com/The_Fall_Of_Os_2
ArcaOS - A Modern Version of IBM’s OS/2 (Overview & Demo)
27:15

ArcaOS - A Modern Version of IBM’s OS/2 (Overview & Demo)

  • Order:
  • Duration: 27:15
  • Uploaded Date: 19 Jan 2023
  • views: 595337
You might think OS/2 is long gone, but it still lingers around in more places then you'd expect. Today's video covers ArcaOS, an OS/2-based operating system designed to work with newer hardware! ArcaOS: https://www.arcanoae.com/arcaos/ ● Gear I use to make these videos: https://www.kit.co/mjd Camera: https://amzn.to/3ipyKc5 Tripod: https://amzn.to/3pqxycn Microphone: https://amzn.to/35UbkXb Editing Software (Premiere): https://amzn.to/39kawfS Thumbnail Editor (Photoshop): https://amzn.to/3lVqVN6 ● Affiliate Links (these links will earn me a commission if you purchase something through them at no additional cost to you): Get a FREE 30-DAY TRIAL of Amazon Prime: https://amzn.to/2xVmMB3 Get 2 FREE Audiobooks with Audible: https://amzn.to/2Ovylse Try Twitch Prime for FREE: https://amzn.to/33g6vaa Amazon: https://www.amazon.com/?tag=teammjd-20 ● Follow Me: Twitter: https://twitter.com/mjdtweets Instagram: http://instagram.com/mjdmichael ● Music/Credits: Background Music: "Ersatz Bossa" and "By the Fireplace" from the YouTube Audio Library "Ultralounge", "Mining By Moonlight", "AcidJazz", "Airport Lounge", "Spy Groove" and "George Street Shuffle" by Kevin MacLeod of http://www.incompetech.com Outro Music: Silent Partner - Bet On It Source: YouTube Audio Library Amazon Affiliate Notice: I am a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com. All Amazon links that I provide will use my affiliate code with Amazon. Some materials in this video are used under Section 107 of the Copyright Act of 1976, which allows "fair use" for purposes such as criticism, commenting, news reporting, teaching, and research. #MichaelMJD #ArcaOS #OS2
https://wn.com/Arcaos_A_Modern_Version_Of_Ibm’S_Os_2_(Overview_Demo)
LGR Tech Tales - IBM OS/2's Fight Against Windows
8:28

LGR Tech Tales - IBM OS/2's Fight Against Windows

  • Order:
  • Duration: 8:28
  • Uploaded Date: 27 Mar 2015
  • views: 669644
This episode covers the inception, development, and strive for market dominance of IBM and Microsoft's OS/2 operating system. Join me in LGR Tech Tales, looking at stories of technological inspiration, failure, and everything in-between! ● Consider supporting LGR on Patreon: http://www.patreon.com/LazyGameReviews ● Social links: https://twitter.com/lazygamereviews http://www.facebook.com/LazyGameReviews ● Photo credits: The Computer Archive https://www.youtube.com/TheComputerArchive ● Music credits: "Milinda" by Diode Milliampere http://diodemilliampere.bandcamp.com/album/psychic-pizza-connection "Twin Shine" by Silent Partner https://www.youtube.com/audiolibrary/music
https://wn.com/Lgr_Tech_Tales_Ibm_Os_2's_Fight_Against_Windows
A Better Windows Than Windows: An OS/2 Warp 3 Retrospective!
25:04

A Better Windows Than Windows: An OS/2 Warp 3 Retrospective!

  • Order:
  • Duration: 25:04
  • Uploaded Date: 22 May 2021
  • views: 67533
Let's install OS/2 Warp 3 from 1995 on the World's Fastest 386 and see what it can do! In this video, we'll explore some DOS/Win3.X multitasking, OS/2, and the history behind IBM's forgotten operating system! 00:00 Introduction 00:35 Background on OS/2 09:43 OS/2 Bare Metal Install 18:28 Gaming on OS/2? 22:19 Concluding Thoughts ● World's Fastest 386 Specifications: Alaris Cougar II Motherboard (Rev. B?) (See UH19 for specs of the board: http://www.win3x.org/uh19/motherboard/show/438) 75MHz IBM 486BL3 "Blue Lightning" (See Redhill's CPU Guide for more on the BL3: http://www.redhill.net.au/c/c-5.html) Cyrix Fasmath CX-83D87-40GP 32MB Fast Page Mode 72-pin SIMM RAM (2x16MB sticks) 32GB Compact Flash Card Trident TGUI9440-1 VLB Video Card w/ 1MB FPM RAM Kingston NE2000-compatible Plug n' Play Ethernet Card VLB Adaptec I/O Controller (integrated on-board) Creative SoundBlaster Pro 2.0 (CT1600) Generic Baby AT Case ● Awesome channels to check out: SUCRA: https://www.youtube.com/c/SUCRA CPU Galaxy: https://www.youtube.com/c/cpugalaxy Modern&Retro Gaming: https://www.youtube.com/channel/UCAnaiu5r1lnoLgzA6S2A1sw PixelPipes: https://www.youtube.com/c/PixelPipes JikissGamer: https://www.youtube.com/user/jikissgamer ● RetroTechBytes links: https://www.twitter.com/RetroTechBytes #Retro​ #Computers #DOS #Vintage #IBM
https://wn.com/A_Better_Windows_Than_Windows_An_Os_2_Warp_3_Retrospective
The Computer Chronicles - OS/2 Warp (1994)
25:46

The Computer Chronicles - OS/2 Warp (1994)

  • Order:
  • Duration: 25:46
  • Uploaded Date: 01 Aug 2013
  • views: 84195
Special thanks to archive.org for hosting these episodes. Downloads of all these episodes and more can be found at: http://archive.org/details/computerchronicles
https://wn.com/The_Computer_Chronicles_Os_2_Warp_(1994)
ArcaOS: Using Modern OS/2  - Install and Review
37:04

ArcaOS: Using Modern OS/2 - Install and Review

  • Order:
  • Duration: 37:04
  • Uploaded Date: 18 Sep 2021
  • views: 157933
Get 2 months of Readly for FREE then just £7.99 a month after the 2 months has ended. This can be canceled any time, please use my link https://readly.me/danwood - Thanks to Readly for sponsoring this video. OS/2 was an operating system that was once expected to change the world, and had a real shot of being the standard operating system for PCs. ArcaOS is a new, OS/2 based operating system, designed to run on modern PCs - I give it a try! ArcaOS: https://www.arcanoae.com/ Rexx: https://en.wikipedia.org/wiki/Rexx OS/2 World: https://www.os2world.com/cms/ My retro gaming podcast: http://theretrohour.com My Twitter: http://twitter.com/danwood_uk My Facebook: http://facebook.com/danwooduk ▬ Contents of this video ▬ 0:00​ - Intro & Brief OS/2 & ArcaOS History 3:54 - ArcaOS Install 7:12 - Readly Sponsor Message 9:14 - ArcaOS Tour 27:40 - Running Windows 16-Bit Programs 30:50 - Running MS-DOS Games 32:00 - Running legacy OS/2 Software 32:32 - Conclusion Sources used in this video (with permission or under fair use): The Computer Chronicles - OS/2 (1993): https://youtu.be/1YcGX5F9ZZA The Computer Chronicles - OS/2 Warp (1994): https://youtu.be/mmxabyk0S2M #RetroGaming #RetroComputers #ArcaOS
https://wn.com/Arcaos_Using_Modern_Os_2_Install_And_Review
Installing the Last Version of IBM OS/2 on the $5 Windows 98 PC
28:10

Installing the Last Version of IBM OS/2 on the $5 Windows 98 PC

  • Order:
  • Duration: 28:10
  • Uploaded Date: 20 Dec 2019
  • views: 225900
Download Dashlane for free on your first device by clicking here: http://bit.ly/2PxXthI and automatically get a 30 day free trial of premium! No credit card required at signup! Thanks to Dashlane for sponsoring this video! ● Liked this video? Subscribe for more: http://mjd.yt/subscribe It's a better DOS than DOS, and a better Windows than Windows! Today, we're gonna be trying to install the last version of IBM's OS/2 operating system on the $5 Windows 98 PC. Let's s̶t̶a̶r̶t warp! ● Join our forum community: https://osforums.net ● Gear I use to make these videos: https://www.kit.co/mjd Camera: https://amzn.to/2K5ia3D Tripod (mine is discontinued): https://amzn.to/2IcI6YM Smaller Tripod: https://amzn.to/2UfLAk9 Microphone: https://amzn.to/2XrmZdb Editing Software (Premiere): https://amzn.to/2uKtrvN Thumbnail Editor (Photoshop): https://amzn.to/2WRxvqj ● Affiliate Links Get a FREE 30-DAY TRIAL of Amazon Prime: https://amzn.to/2xVmMB3 Get 2 FREE Audiobooks with Audible: https://amzn.to/2Ovylse Amazon: https://www.amazon.com/?tag=teammjd-20 Save 10% on PDF Expert: https://pdfexpert.com/store?code=MICHAEL_MJD ● Follow Me: Twitter: https://twitter.com/mjdtweets Instagram: http://instagram.com/mjdmichael Facebook: https://facebook.com/mjdmichael ● Music/Credits: Background Music: http://www.incompetech.com & YouTube Audio Library Outro Music: Silent Partner - Bet On It Source: YouTube Audio Library Amazon Affiliate Notice: I am a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com. All Amazon links that I provide will use my affiliate code with Amazon. Some materials in this video are used under Section 107 of the Copyright Act of 1976, which allows "fair use" for purposes such as criticism, commenting, news reporting, teaching, and research. #MichaelMJD #OS2 #Windows98
https://wn.com/Installing_The_Last_Version_Of_Ibm_Os_2_On_The_5_Windows_98_Pc
The Computer Chronicles - OS/2 (1993)
27:12

The Computer Chronicles - OS/2 (1993)

  • Order:
  • Duration: 27:12
  • Uploaded Date: 01 Aug 2013
  • views: 6357
Special thanks to archive.org for hosting these episodes. Downloads of all these episodes and more can be found at: http://archive.org/details/computerchronicles
https://wn.com/The_Computer_Chronicles_Os_2_(1993)
FIZ 2 MANEJOS NOVOS E OS 2 VIDEOS BATERAM MAIS DE 4 MILHOES DE VISUALIZAÇÃO
34:54

FIZ 2 MANEJOS NOVOS E OS 2 VIDEOS BATERAM MAIS DE 4 MILHOES DE VISUALIZAÇÃO

  • Order:
  • Duration: 34:54
  • Uploaded Date: 18 Aug 2023
  • views: 297
Esses são os 2 vídeos que mais deram visualização no canal 1- DEIXEI LIMÃO DENTRO DA COLMEIA 168 HORAS (NÃO ACREDITEI NO RESULTADO) No vídeo falei sobre o fato do acaro varroa ser um género de ácaros ectoparasitas que infesta diversas espécies de abelhas do género Apis e que pode ser controlado com suco de limão rico em ácido cítrico deixado dentro da colmeia. Falei também que o limão representar até 7% de ácido cítrico no suco. Que o ideal seria usar o ÁCIDO OXÁLICO por ter maior eficiência. Mas que deixando o limão dentro da colmeia por 168 horas, o apicultor não vai acreditar no resultado. 2- 1 CABEÇA DE ALHO, 2 FORLHAS DE PAPEL E XAROPE PARA UNIR 2 ENXAMES SEM BRIGA DAS ABELHAS (PARTE 01) No vídeo falei sobre unir dois enxames de abelhas, que o apicultor tem a opção de usar varias estratégias para não ter brigar. Usar aromatizantes fortes é uma ótima alternativa sendo o alho uma boa opção. que o apicultor também pode usar papel e xarope no processo.
https://wn.com/Fiz_2_Manejos_Novos_E_Os_2_Videos_Bateram_Mais_De_4_Milhoes_De_Visualização
STREAM ARCHIVE: Upgrading Through Every Version of OS/2
4:07:25

STREAM ARCHIVE: Upgrading Through Every Version of OS/2

  • Order:
  • Duration: 4:07:25
  • Uploaded Date: 26 Apr 2021
  • views: 15216
So, you know what YouTube needs? More OS/2 content. You know what I've never seen documented (in video form): upgrading through every version of OS/2. Is it even possible? I have absolutely no idea. Starting with a 286 based system and Microsoft OS/2 1.0, the plan is upgrade through each 16-bit version (in PCem) of 1.0, 1.1, 1.2, and 1.3, to the 32-bit versions (2.0, and 2.1), then Warp, Warp Connect, and finally OS/2 4.52. There's no official upgrade path to eCommStation or ArcaOS, so that will have to wait until a future video. We might also try some interesting quirks of OS/2 such as installing Windows 3.0, testing some backwards compatibility and more. Ideas are welcome as we go along. NCommander's Socials: Twitter: https://twitter.com/FOSSfirefighter Discord: https://discord.gg/V8esNah Blog: https://casadevall.pro/ Patreon: https://www.patreon.com/ncommander Music by Epidemic Sound: https://www.epidemicsound.com/ #OS2 #VintageComputing #Upgrades #livestream #retrocomputing #ibm #pcem #16bit #OS/2 #1980s #1990s
https://wn.com/Stream_Archive_Upgrading_Through_Every_Version_Of_Os_2
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Fall of OS/2
    1:39:21
    The Fall of OS/2remove from playlist
  • ArcaOS - A Modern Version of IBM’s OS/2 (Overview & Demo)
    27:15
    ArcaOS - A Modern Version of IBM’s OS/2 (Overview & Demo)remove from playlist
  • LGR Tech Tales - IBM OS/2's Fight Against Windows
    8:28
    LGR Tech Tales - IBM OS/2's Fight Against Windowsremove from playlist
  • A Better Windows Than Windows: An OS/2 Warp 3 Retrospective!
    25:04
    A Better Windows Than Windows: An OS/2 Warp 3 Retrospective!remove from playlist
  • The Computer Chronicles - OS/2 Warp (1994)
    25:46
    The Computer Chronicles - OS/2 Warp (1994)remove from playlist
  • ArcaOS: Using Modern OS/2  - Install and Review
    37:04
    ArcaOS: Using Modern OS/2 - Install and Reviewremove from playlist
  • Installing the Last Version of IBM OS/2 on the $5 Windows 98 PC
    28:10
    Installing the Last Version of IBM OS/2 on the $5 Windows 98 PCremove from playlist
  • The Computer Chronicles - OS/2 (1993)
    27:12
    The Computer Chronicles - OS/2 (1993)remove from playlist
  • FIZ 2 MANEJOS NOVOS E OS 2 VIDEOS BATERAM MAIS DE 4 MILHOES DE VISUALIZAÇÃO
    34:54
    FIZ 2 MANEJOS NOVOS E OS 2 VIDEOS BATERAM MAIS DE 4 MILHOES DE VISUALIZAÇÃOremove from playlist
  • STREAM ARCHIVE: Upgrading Through Every Version of OS/2
    4:07:25
    STREAM ARCHIVE: Upgrading Through Every Version of OS/2remove from playlist
PLAYLIST TIME: 0:00 / 9:20:39

The Fall of OS/2

IBM had unknowingly created a juggernaut when they allowed Bill Gates and Microsoft to control the PC operating system standard, first with DOS and then with Windows. Having lost control of the PC hardware standard, IBM was determined to regain control of the operating system standard. Their weapon? The OS/2 operating system, a powerful and feature packed operating system that best case should have had little trouble overcoming Windows, and worst case should have at least been able to carve out a profitable and sustainable market share. This is the story of how IBM's last attempt to keep a measure of control in the PC space...failed. Note: the first part of OS/2’s story can be found in part 3 of the Rise and Fall of the IBM PC https://youtu.be/4lI_GmHcj8A Substack script link https://anotherboringtopic.substack.com/p/the-fall-of-os2 Substack extended thoughts link https://anotherboringtopic.substack.com/p/fall-of-os2-extended-thoughts 00:00:00 Intro 00:05:36 OS/2 1.3 00:11:42 Jim Cannavino 00:20:49 OS/2 2.0 00:26:36 Taligent 00:29:00 The Trojan Horse of Windows Compatibility 00:34:49 OS/2 2.1 00:42:00 OS/2 Warp 3 00:46:18 OS/2 Specific Publications 00:52:49 OS/2 Professional Warp 3 Coverage 01:01:05 The Warp Marketing Disaster 01:15:25 The OS/2 Implosion 01:23:37 OS/2 Warp PowerPC 01:25:27 OS/2 Warp 4 01:34:27 ArcaOS 01:36:04 Wrap-Up and Final Thoughts https://www.buymeacoffee.com/AnotherBoringTopic
1:39:21
The Fall of OS/2
IBM had unknowingly created a juggernaut when they allowed Bill Gates and Microsoft to con...
published: 01 May 2023
Play in Full Screen
27:15
ArcaOS - A Modern Version of IBM’s OS/2 (Overview & Demo)
You might think OS/2 is long gone, but it still lingers around in more places then you'd e...
published: 19 Jan 2023
Play in Full Screen
8:28
LGR Tech Tales - IBM OS/2's Fight Against Windows
This episode covers the inception, development, and strive for market dominance of IBM and...
published: 27 Mar 2015
Play in Full Screen
25:04
A Better Windows Than Windows: An OS/2 Warp 3 Retrospective!
Let's install OS/2 Warp 3 from 1995 on the World's Fastest 386 and see what it can do! In ...
published: 22 May 2021
Play in Full Screen
25:46
The Computer Chronicles - OS/2 Warp (1994)
Special thanks to archive.org for hosting these episodes. Downloads of all these episodes ...
published: 01 Aug 2013
Play in Full Screen
37:04
ArcaOS: Using Modern OS/2 - Install and Review
Get 2 months of Readly for FREE then just £7.99 a month after the 2 months has ended. This...
published: 18 Sep 2021
Play in Full Screen
28:10
Installing the Last Version of IBM OS/2 on the $5 Windows 98 PC
Download Dashlane for free on your first device by clicking here: http://bit.ly/2PxXthI an...
published: 20 Dec 2019
Play in Full Screen
27:12
The Computer Chronicles - OS/2 (1993)
Special thanks to archive.org for hosting these episodes. Downloads of all these episodes ...
published: 01 Aug 2013
Play in Full Screen
34:54
FIZ 2 MANEJOS NOVOS E OS 2 VIDEOS BATERAM MAIS DE 4 MILHOES DE VISUALIZAÇÃO
Esses são os 2 vídeos que mais deram visualização no canal 1- DEIXEI LIMÃO DENTRO DA COLME...
published: 18 Aug 2023
Play in Full Screen
4:07:25
STREAM ARCHIVE: Upgrading Through Every Version of OS/2
So, you know what YouTube needs? More OS/2 content. You know what I've never seen document...
published: 26 Apr 2021
Play in Full Screen

OS/2

OS/2 is a series of computer operating systems, initially created by Microsoft and IBM, then later developed by IBM exclusively. The name stands for "Operating System/2", because it was introduced as part of the same generation change release as IBM's "Personal System/2 (PS/2)" line of second-generation personal computers. The first version of OS/2 was released in December 1987 and newer versions were released until December 2001.

OS/2 was intended as a protected mode successor of PC DOS. Notably, basic system calls were modeled after MS-DOS calls; their names even started with "Dos" and it was possible to create "Family Mode" applications: text mode applications that could work on both systems. Because of this heritage, OS/2 shares similarities with Unix, Xenix, and Windows NT in many ways.

OS/2 is no longer marketed by IBM, and IBM standard support for OS/2 was discontinued on 31 December 2006. It has been since maintained with relatively few new features under the name of eComStation.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/OS_2
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: os 2

Edit

Pre�os do Bitcoin, Ethereum e Solana oscilam antes do prazo final de Trump para tarifas

BitRSS 31 Mar 2025
O mercado cripto tem oscilado em meio � apreens�o generalizada dos mercados, j� que os investidores tentam lidar com as pol�ticas comerciais imprevis�veis de Trump. O post Pre�os do Bitcoin, Ethereum e Solana oscilam antes do prazo final de... .
Edit

OS Therapies Reports Full Year 2024 Financial Results and Provides Business Update (Form 8-K) (OS Therapies Inc)

Public Technologies 31 Mar 2025
New York, NY, March 31, 2025 - OS Therapies Inc ... ● Formed subsidiary OS Drug Conjugates and initiated review of strategic options for tunable Drug Conjugates (tDC) and tADC platform ... About OS Therapies ... OS Therapies Inc.
Edit

Annual Report for Fiscal Year Ending December 31, 2024 (Form 10-K) (OS Therapies Inc)

Public Technologies 31 Mar 2025
) ... Overview. We are a clinical stage biopharmaceutical company focused on the identification, development and commercialization of treatments for Osteosarcoma (OS) and other solid tumors ... This disease is difficult to diagnose ... Revenue ... 1 ... OS Therapies Inc.
Edit

Jays' Bassitt pitches 6 innings for first win, Sugano leaves O's debut with cramp, Toronto ...

The Huntsville Item 30 Mar 2025
Chris Bassitt pitched six innings to win his first start of the season, George Springer hit a two-run single and the Toronto Blue Jays beat the Baltimore Orioles 3-1. Tyler Heineman added a solo home run, his first, as the ....
Edit

Turning Hidden Flash Drives into Powerful Cybersecurity Tools! | Tails, Kali Linux, and Parrot OS

Bitchute 29 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Quem s�o os 12 disc�pulos de Jesus?

Bitchute 29 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Zorin OS 17.3 Integrates Brave Browser As Default Amidst Enhanced Features

MENA FN 29 Mar 2025
(MENAFN - The Arabian Post) Zorin OS 17.3 has been officially released, introducing significant updates aimed at enhancing user experience and privacy. A notable change in this iteration is the ... .
Edit

Aerynos Emerges As Serpent OS Rebrands And Releases New Update

MENA FN 29 Mar 2025
(MENAFN - The Arabian Post) The Linux distribution formerly known as Serpent OS has officially rebranded to AerynOS, marking a significant transformation for the project. This change was announced ... .
Edit

OnePlus Watch 3 vs Pixel Watch 3: Time for a new Wear OS king?

TechRadar 29 Mar 2025
OnePlus' latest Watch 3 serves as a tempting Wear OS alternative to Google's Pixel Watch 3 ... .
Edit

OS 10 Reinos e 10 Chifres da Cabala Negra e o Projeto P�tria Grande para ...

Bitchute 29 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Kicksecure OS Setup: Armoring Your Debian System for the Digital Dystopia

Bitchute 29 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
×