Easily Run Windows Apps On Linux With Bottles

Ғылым және технология

Need to run Windows programs on Linux? Bottles can help with that! Bottles is a frontend to WINE. Choose between Gaming and Software environment based on the type of software you want to start. More advanced users can choose the Custom environment to configure the bottle on their own.
REFERENCED:
► usebottles.com/ - Bottles
WANT TO SUPPORT THE CHANNEL?
💰 Patreon: / distrotube
💳 Paypal: kzread.info?even...
🛍️ Amazon: amzn.to/2RotFFi
👕 Teespring: teespring.com/stores/distrotube
DONATE CRYPTO:
💰 Bitcoin: 1Mp6ebz5bNcjNFW7XWHVht36SkiLoxPKoX
🐶 Dogecoin: D5fpRD1JRoBFPDXSBocRTp8W9uKzfwLFAu
📕 LBC: bMfA2c3zmcLxPCpyPcrykLvMhZ7A5mQuhJ
DT ON THE WEB:
🕸️ Website: distrotube.com/
📁 GitLab: gitlab.com/dwt1
🗨️ Mastodon: fosstodon.org/@distrotube
👫 Reddit: / distrotube
📽️ LBRY/Odysee: odysee.com/@DistroTube:2
FREE AND OPEN SOURCE SOFTWARE THAT I USE:
🌐 Brave Browser - brave.com/dis872
📽️ Open Broadcaster Software: obsproject.com/
🎬 Kdenlive: kdenlive.org
🎨 GIMP: www.gimp.org/
💻 VirtualBox: www.virtualbox.org/
🗒️ Doom Emacs: github.com/hlissner/doom-emacs
Your support is very much appreciated. Thanks, guys!

Пікірлер: 377

  • @UltraZelda64
    @UltraZelda642 жыл бұрын

    I think "compatibility layer" is the more technical term for what Wine actually is, as it converts low-level Windows system calls to something that the Linux (and other UNIX/POSIX) kernels can understand and execute, and effectively runs the application "natively" (or semi-natively?). It's equivalent to the old code in 32-bit versions of Windows that allowed MS-DOS programs to run, or Windows' own settings to allow programs to run in "compatibility mode" for older versions of the OS. Wine does not emulate an entire CPU like, for example, DOSBox, BSNES and KEGA Fusion... so therefore, "Wine is not an emulator." It just translates things meant for the Windows kernel in such a way that other kernels can understand.

  • @PenguinRevolution

    @PenguinRevolution

    2 жыл бұрын

    You're correct

  • @dkosmari

    @dkosmari

    2 жыл бұрын

    Regarding system calls, Win32 executables aren't allowed to perform syscall instructions, because Microsoft breaks ABI compatibility between builds. All system calls are done indirectly through user32.dll and ntdll.dll; these libraries have stubs that actually execute the correct syscalls. Bridging system calls would require either some help from the kernel (the way BSD kernel handles syscalls from Linux binaries) or an actual emulator that would intercept and handle all the syscall instructions (the way VMs work.) Hiding the syscalls inside DLLs is what makes it possible to run Win32 executables without emulation and without intervention from the host kernel.

  • @yodaburek

    @yodaburek

    2 жыл бұрын

    Elegant explanation!

  • @bryede

    @bryede

    2 жыл бұрын

    Agreed, but for the non-technical out there the term emulation conjures up the right image, that you're somehow running software for X on Y.

  • @payrimdwein9082

    @payrimdwein9082

    2 жыл бұрын

    true compatibility fits

  • @scottmiller2591
    @scottmiller25912 жыл бұрын

    Does Bottles let you natively access the GPU? FUTURE SCOTT: Yes, it looks like the configurations allow you to access the GPU directly.

  • @MarcA95

    @MarcA95

    2 жыл бұрын

    Yes that's the point of a compatibility layer is that it uses the hardware of the machine unlike a virtual machine

  • @limecordial5734

    @limecordial5734

    2 жыл бұрын

    future scott what do i invest in

  • @scottmiller2591

    @scottmiller2591

    2 жыл бұрын

    @@limecordial5734 I'm going long on canned goods and ammo.

  • @randomguy3784

    @randomguy3784

    2 жыл бұрын

    Thank you Future Scott.

  • @wyattarich

    @wyattarich

    2 жыл бұрын

    If you can do it in Lutris, you can do it in Bottles :)

  • @dkosmari
    @dkosmari2 жыл бұрын

    Wine is as much of an emulator as GNU libc is an emulator of Bell Labs' libc, or Linux is an emulator of the Unix kernel. It's not an emulator at all. The Wine process is only used to load up the executable file, which is in a weird format (for Unix systems); after it's loaded, it runs as a native, non-emulated process.

  • @svenkarlsen2702

    @svenkarlsen2702

    2 жыл бұрын

    It's among other things a wrapper for Windows built-in APIs and system calls.

  • @lawrencedoliveiro9104

    @lawrencedoliveiro9104

    2 жыл бұрын

    It emulates the Windows abstract machine. People seem to think there is some kind of impermeable wall between “hardware” and “software”, but in Computer Science we have the concept of “abstract machines”, where we can build one layer on top of another, and the distinction is a minor implementation detail.

  • @dkosmari

    @dkosmari

    2 жыл бұрын

    @@lawrencedoliveiro9104 Then everything is "emulation." You're just stretching the definition of the word to mean nothing in particular. Wine libraries are an implementation of the Win32 API, just like Winsock is an implementation of the BSD sockets API.

  • @dkosmari

    @dkosmari

    2 жыл бұрын

    @gilkesisking Or as we computer scientists would call it, "an implementation of an API." "Translator" would imply you just need to adapt parameters and function calls, but in reality Wine fully implements most of the functionality because it doesn't exist at all on the host system. Only a very small fraction can actually be just "translated" to an equivalent native function. To implement `CreateWindow()` you need to do way more than just creating a Xlib window and returning its ID as the handle.

  • @lawrencedoliveiro9104

    @lawrencedoliveiro9104

    2 жыл бұрын

    @@dkosmari Correct. “Emulation” in CS doesn’t really mean anything fundamentally different from, say, “implementation”.

  • @neati4369
    @neati4369 Жыл бұрын

    It's truly astounding how easy the internet makes learning these days. Thanks for the tutorial, my guy.

  • @romakrelian
    @romakrelian2 жыл бұрын

    Thanks for introducing this to me. I'm excited to try it out.

  • @Neuron43
    @Neuron432 жыл бұрын

    If I could get PaintDotNet to run on Linux I would never look back. PDN has a great team of devs behind it and a forum where users create plugins in the form of Effects that allow for some pretty cool image manipulation. I've been hooked on PDN for a couple decades now and it's the only reason I keep Windoze around.

  • @sprons4973

    @sprons4973

    2 жыл бұрын

    finally someone who gets it i've been trying to find a decent alternative for years and nothing really has the same mix of usability and speed/size

  • @kamikamieu
    @kamikamieu2 жыл бұрын

    You can manage Flatpak permissions with Flatseal. It’s a really good app. You can just click all the through all the settings and it’s easy to understand.

  • @ezio934

    @ezio934

    2 жыл бұрын

    Use flatpak to manage apps. Use *this* to manage flatpak. Use *this* to manage *that* and finally use *this* to wrap all of *those* things.

  • @kamikamieu

    @kamikamieu

    2 жыл бұрын

    @@ezio934 It’s more practical it you want to “actually use the app” and not remembering every flatpak overrides.

  • @ogchirag

    @ogchirag

    2 жыл бұрын

    I always found hard to trust flatpaks so this is a great tip

  • @einfachlinux
    @einfachlinux2 жыл бұрын

    Hi Derek, once again a great video from you! I always had my problems with Wine to configure it correctly, but Bottles looks so easy! I will take a look at it. The step from Win to Linux is - just as you said at the beginning - with the hurdle that some programs are not available under Linux, but are necessary. For example, due to my profession, I use an accounting program and a tax software and currently use them in a VM. Otherwise I am completely on Linux only. And for both programs I'm sure I'll find something, just takes a little time ;-) Thanks for your content, which I like very much. Many greetings from Germany :-)

  • @HadeedSarfaraz
    @HadeedSarfaraz2 жыл бұрын

    I literally installed this yesterday and wanted to figure it out, thanks DT!!

  • @UltraZelda64
    @UltraZelda642 жыл бұрын

    Ah... IrfanView. That was one of the standout Windows programs, along with Winamp, that I really missed when ditching Windows way back in 2004-2006. It was a fast, lightweight image viewer with sort of a basic file manager/list view. My replacement back in the day was gqview, which I believe is now called Geeqie. Anyone who likes IrfanView, give Geeqie a try. It worked for me, you might just like it!

  • @lovebaranus9800

    @lovebaranus9800

    2 жыл бұрын

    Which is the one you like the most now? I really like Nsxiv, cuz of the vim keys.

  • @CaptainKenway

    @CaptainKenway

    2 жыл бұрын

    nomacs is the closest thing to Irfanview on Linux IMO. Very similar interface and functionality. Unfortunately, the lead developer simply dropped off the face of the Earth a couple of years ago and it's been unmaintained since then.

  • @joakimweckman8542

    @joakimweckman8542

    2 жыл бұрын

    IMO hands down best ultra-light image viewer that is nice to use is qimgv. Go to their github page and scroll down, you will see instructions on how to install on your distro. It's written in C++ and handles large amounts of photos even on older hardware just fine. Incredible piece of software.

  • @ricardog2165

    @ricardog2165

    2 жыл бұрын

    I like XnViewMP on Windows. It can also convert between different formats, edit, and can use Adobe Photoshop plugins. Edit: apparently they have Linux/Mac versions as well!

  • @SteveMacSticky

    @SteveMacSticky

    2 жыл бұрын

    Xnview, Xnview Mp and Fast stone kick Irfan view out of the water. Better products

  • @Blazestar2000
    @Blazestar20002 жыл бұрын

    Wow! This Bottles flatpak the piece of software! I use Wine and winecfg often, but creating bottles for individual programs always intimidated me. This looks like a great way to get my feet wet :) thanx DT!

  • @fuba44
    @fuba442 жыл бұрын

    This was amazing, lived it. Thank you so much for sharing this video!

  • @SoulpunkTVshow
    @SoulpunkTVshow2 жыл бұрын

    It does look fantastic! I'll give it a try. Thank you DT!

  • @pawouapproval984
    @pawouapproval9842 жыл бұрын

    Thanks for sharing this! I tried creating wine environments manually, but it's a bit difficult and only works around half the time when I try, hopefully this will help!

  • @kychemclass5850
    @kychemclass58502 жыл бұрын

    Being totally soaked in a windows app is a HUGE problem that gets very little attention. What would be near revolutionary are guides showing you 'The Windows program does this..... You achieve this effect in _____ on linux by doing this....." I know this is the kind of thing that new Linux learners can pickup themselves but it can be a very frustrating learning curve and I'm sure some just end up going back to Windows. Help people defeat problems before they arise to help people make the transition.

  • @altrogeruvah
    @altrogeruvah2 жыл бұрын

    This is a great video, but I wish people reviewing Wine would try installing something else outside Notepad++ and IrfanView, cause these two software are known to work on Wine for a decade now, they have been covered to death and I don't think Notepad++ is anyone's dealbreaker on moving to Linux... An Adobe or Affinity product on the other hand? Maybe.

  • @mattiaborda

    @mattiaborda

    2 жыл бұрын

    I agree but this video is not about wine, it’s about bottles so the programs you use are not relevant imo

  • @jimsprojects7777

    @jimsprojects7777

    2 жыл бұрын

    Well, I just loaded Bottles on my i3, 8 gig laptop and I tried to get a Bible Program I use on windows (e-sword) to work. It failed on every attempt. Many times freezing the PC altogether. I'm using pop os. So far VB is the only thing that works with this program.

  • @aaronvond

    @aaronvond

    2 жыл бұрын

    @@jimsprojects7777 I think e-sword needs dotNET, did you install that in the bottle first? Probably VC runtime of some sort, too. Come to think of it, I think it also needed Internet Explorer in the past, and almost certainly a richedit control, unless dotNET takes care of that now.

  • @yukendhiran8043
    @yukendhiran80432 жыл бұрын

    I always find cool new apps in your channel Keep doing it 👍

  • @jwpetr
    @jwpetr2 жыл бұрын

    I am learning much about Linux distros and the ability to run Windows programs. I tried Crossover and it works rather well, although it does cost to purchase. The bottles Crossover uses is very similar to the Bottles software you are demonstrating.

  • @p1kdum
    @p1kdum2 жыл бұрын

    Flatseal works well for giving Bottles (and other flatpaks) access to additional parts of your filesystem.

  • @PCranieri
    @PCranieri2 жыл бұрын

    Man this is so useful. I struggled for DAYS trying to setup a wineprefix to run BattleNet smoothly. And now this. So simple, yet so powerful. I love It, thanks mate

  • @MasterHigure

    @MasterHigure

    2 жыл бұрын

    I used Lutris for Blizz games, and it was smooth sailing. I'm sure Bottles works just as well. Manually touching wine is not something I wanna do ever again.

  • @PCranieri

    @PCranieri

    2 жыл бұрын

    @@MasterHigure unfortunately it was not so smooth for me. Bnet is a nasty opponent and kept freezing, or lagging. So I had to manually setup a 32bit wine environment, then add it on Lutris which now manages to run it whitout showing the terminal. It works, but is a convoluted solution. Bottles seems to me something everyone can do in a bunch of clicks

  • @johnbuscher

    @johnbuscher

    2 жыл бұрын

    @@PCranieri I mean, Bottles basically does what you just did with some button clicks. It may be “easier” to a new user but functionally, you should still know what it needed to work around in order to accomplish it. Understanding that will make you more proficient in the software should another problem arise later on. Kinda like learning how to manually boot your OS from Grub’s basic shell in case something gets borked, and that way you don’t necessarily have to reinstall your OS.

  • @PCranieri

    @PCranieri

    2 жыл бұрын

    @@johnbuscher Indeed I am glad I’ve learned how to make it work, but if we all want Linux to be recognized as a user friendly os these are HUGE steps forward!

  • @romandemetrius6798

    @romandemetrius6798

    2 жыл бұрын

    Do you have an idea of it’d be possible to run pubg on bottles?

  • @warhawk_yt
    @warhawk_yt2 жыл бұрын

    The big issue I have with wine is it’s sometimes difficult to find out what dependency the program requires especially if it’s not that well known of a program.

  • @poudink5791

    @poudink5791

    2 жыл бұрын

    usually launching through terminal and looks at logs will tell me. if that's not enough, the winehq appdb usually does it.

  • @rizkyadiyanto7922

    @rizkyadiyanto7922

    2 жыл бұрын

    thats why we have lutris, playonlinux, and bottles.

  • @wyattarich

    @wyattarich

    2 жыл бұрын

    Then you should find a utility for that! Search "Dependency Walker 2.2", there are others as well. It doesn't have to be a guessing game.

  • @mvevitsis

    @mvevitsis

    2 жыл бұрын

    @@poudink5791 I can't even figure out how to use bottles through the command line. The documentation is trash.

  • @weseehowcommiegoogleis3770

    @weseehowcommiegoogleis3770

    2 жыл бұрын

    I've NOT had much luck with Wine. Linux Aint Windoze.

  • @psiborg6072
    @psiborg60722 жыл бұрын

    Very nice, I installed Bottles and will play with it, thank you!!! Edit: Running Cinebench R23 was very easy using your instructions!

  • @digitechrecordingstudio5057
    @digitechrecordingstudio5057 Жыл бұрын

    Ima download it thanks for sharing!!

  • @hazelphoenix1819
    @hazelphoenix18192 жыл бұрын

    Love your videos mate!

  • @pb8582
    @pb8582 Жыл бұрын

    This is actually amazing, we also have an appimage version! Game changer not like I use any windows app but I can see a lot of people coming from windows that would appreciate this!

  • @Viking8888
    @Viking88882 жыл бұрын

    Thanks for this video. I'm going to give bottles a try and see how well it works for me. Take care!

  • @Logan5Greye
    @Logan5Greye2 жыл бұрын

    Wow! This sounds really cool! Clever name too. "Bottles" bc it's using WINE. I'm going to have to re-watch the video to make sure I understand how it works and how to best use it. The fact this exists I'm sure is a huge help vs just trying to use WINE alone.

  • @noverdy
    @noverdy2 жыл бұрын

    it's nice for me to have this to keep everything organized

  • @t0m5k1
    @t0m5k12 жыл бұрын

    Nice, I've always wanted an alternative to winetricks and this looks like it. I have a separate partition that I use for "Wine prefixes" which is what a wine bottle actually is.

  • @paczku6749
    @paczku6749 Жыл бұрын

    thanks, it actually let me through so i could download it.

  • @lgrullon854
    @lgrullon854 Жыл бұрын

    Pretty awesome video, thansk for sharing.

  • @kingtutlearning
    @kingtutlearning Жыл бұрын

    Woah! I did not know bottles is like wine but better. I am going to check this out.

  • @MelbetPH
    @MelbetPH Жыл бұрын

    THANKS FOR THIS IV BEEN SEARCHING FO SOOO LONG

  • @MissyMalaprop
    @MissyMalaprop2 жыл бұрын

    I love Bottles... they do a good job on it. I have problems with the preset Gaming or Application bottles, so I always use Custom.

  • @joelchrono

    @joelchrono

    2 жыл бұрын

    Do you run actual games on it? Or you mean game launchers? DRM free games or games obtained by "other" means? I have always wondered if "those" kinda games worked with wine

  • @MissyMalaprop

    @MissyMalaprop

    2 жыл бұрын

    @@joelchrono Bottles has 3 options when creating a Bottle... Application, Game, or Custom. Custom just default starts with a blank slates, and the others add all types of dependencies and dll overrides and things which can help, but can also cause problems and are not the best idea to start with. It can run all the same games you can run in Steam on Proton, from various other stores and such. If its really old and like on a DVD you might need some hack/patch to work without looking for a disc in the drive... but most things these days just check the online store account at whatever store, which works fine.

  • @romandemetrius6798

    @romandemetrius6798

    2 жыл бұрын

    Pls I need to know if it’d be possible to run pubg on it?

  • @mr.wonderful4307
    @mr.wonderful43072 жыл бұрын

    This is good to know. Now I can migrate from win 10 to Zorin 16 Pro. Thanks.

  • @Roy_1
    @Roy_12 жыл бұрын

    Cool! Why isn't this more popular?

  • @MarcosAlmeidakirito
    @MarcosAlmeidakirito2 жыл бұрын

    Thank for the tip, I was about to make a dual boot install just to execute some windows apps (like Proteus, AutoCAD etc) to use for work, I'll try to use bottles and se if it works!

  • @Magnetik_moto
    @Magnetik_moto2 жыл бұрын

    The easiest way to access files created with wine programs is to create a symlink to "virtual C drive" in your home folder.

  • @joetheman74
    @joetheman74 Жыл бұрын

    Irfanview is a great little editor. It has some advanced features that are quick to access and use without having to load up a more bulky program. With that said it runs flawlessly under regular old wine and can be used like any other app on your system. Including using it as a default app for selected file types and accessible from a right click menu in your native file manager. if you want and the ability to use it's built in file management like any other native program and it all just works. There is no need for doing anything fancy or running "bottles" to use it.

  • @Ukepa
    @Ukepa Жыл бұрын

    I'm moving to linux (xubuntu) to avoid dealing with newer windows versions. thanks for a really good video on ways to do that!

  • @zenutopia2k708
    @zenutopia2k7082 жыл бұрын

    Good video, but it would have been cool to see you install a few AAA Windows games with Bottles (future video?), as gaming is one of the main reasons people stick with Windows. Many people (including myself) have tried installing/playing Windows games in Linux, only to give up in frustration, and just use Wiindows to play games.

  • @Spenchik
    @Spenchik Жыл бұрын

    It's amazing, will try one more time switch from windows to Linux, previous turn led to consequences that made quite hard to work on .net projects, but seems it's time to check one more tool which may help me

  • @RobertTreat9
    @RobertTreat92 жыл бұрын

    Thanks for the info. Though I prefer the vm method. If games were important, I'd probably just recommend dual booting. Wine can be very convenient though if an app installs and runs ok,

  • @xphstos_
    @xphstos_2 жыл бұрын

    Sorry but I think no one holds onto his windows installation because of Notepad++ or IrfanView... It's mostly about Adobe' Suite / Architecture / CAD software and or any kind of Windows only game. Othen than, great video as always!

  • @xphstos_

    @xphstos_

    2 жыл бұрын

    @Linden Reaper still needed but so many people... You can't change the industry's standards that easily!

  • @xphstos_

    @xphstos_

    2 жыл бұрын

    @Linden Reaper for example as a graphic designer you don't work alone and you have to cooperate with printing shops, other designers etc. So it's not only you that has to change. It's a whole network of people. That's why is difficult. One good example of people leaving Adobe is the UI/UX design industry. At that area figma and sketch are the king's. Figma is cross platform since it's web based but sketch is Mac os only. So then you have another binding in an OS. Even if you move away from adobe nowdays your best option is affinity's design suit which again it's Mac os and windows only. Anyway, I get your point and I agree but it's not an easy thing to do.

  • @xphstos_

    @xphstos_

    2 жыл бұрын

    @Linden Reaper I don't want to sound like a guru or anything but your lack in experience into that field shows... Printer shops buy printers that cost thousands or even millions and they change them until they get back their money's worth a d then some! That usually means years if not decades... Older printers works best with specific settings in PDF. You think you can "convince" someone who made an investment like this that adobe is evil and sucks our wallets or anything else? You don't and to be honest, since you're making money with those products you pretty much don't care about it! That's how most designers think. I'm not a designer btw, I'm a front end developer and I have to collab with designers..

  • @xphstos_

    @xphstos_

    2 жыл бұрын

    @Linden Reaper ok you can try and change the industry and I'm standing with you... Be my guest...

  • @coqaine
    @coqaine2 жыл бұрын

    omg irfanview, yes i've missed that since moving away from windows. irfan is a name, it's my name, though i didn't make the software. fyi, it's prounced "ear-f-ahn", or "ear-fawn". sometimes people have pronounced it "earphones". sometimes "rephan". sometimes they just say "urf", like surf. sometimes when they try they say urf-un, like surf'n, similar to what you just did. xD rarely i've been called efron, which is also cool, so i changed my coffee name to "zac", if you get the connection ;) the last thing i expected from this video was you struggling with my name, this just made my day, i'm cracking up.

  • @ahanmondal67
    @ahanmondal672 жыл бұрын

    Thank you dt very much , very very much for this video.

  • @sephiroth7818
    @sephiroth78182 жыл бұрын

    @4:45 research 'Snap' Bottles reminds me of PlayOnLinux

  • @yahmk3978
    @yahmk39784 ай бұрын

    Thank you!

  • @abaneyone
    @abaneyone2 жыл бұрын

    Wow thanks DT.

  • @davidcabrero2034
    @davidcabrero20342 жыл бұрын

    I got myself another ssd to dual boot Linux, to do some work from home on an isolated space, however I decided to try wine and proton on some games for the fun of It and im still impressed and cant understand how some games (world of warcraft being the most notorious case for me) runs better on this Ubuntu install.

  • @cyberp0et
    @cyberp0et2 жыл бұрын

    Wine is pretty good. Imma check Bottles as well, if need be.

  • @dominiek1525
    @dominiek15252 жыл бұрын

    Irfanview was the only program I missed on Linux. Recently I came across XnView, which is a really good linux replacement. First time anything came close to irfanview. Batch conversions, metadata updates etc.

  • @ianchapman5733

    @ianchapman5733

    Жыл бұрын

    I use Linux Mint KDE and am running Irfanview through WINE with no problem.

  • @AbhishekKumar-po2id

    @AbhishekKumar-po2id

    Жыл бұрын

    How can we use microsoft office in linux, i have tried with Playonlinux but, .XLSM files not working properly

  • @vinnylivoti9567
    @vinnylivoti95672 ай бұрын

    Great video.

  • @gordonfreimann
    @gordonfreimann2 жыл бұрын

    Irfan is the name of the author. The program is so old that surprised to see that it is still used today. Seeing it brought a lot of memories from my childhood and my windows 98 installed computer :)

  • @GugureSux

    @GugureSux

    2 жыл бұрын

    Irfan's been getting more popular in the passing years after MS dropped animated GIF support from their native image viewers post WinXP. Not to mention it can also play video and audio files.

  • @ShadowMoonPhoenix
    @ShadowMoonPhoenix Жыл бұрын

    Notepad++ is a really good multipurpose notepad that has many options.. I have even set up simple C++ and C# code and documentation and simply copied and pasted into the Compiler...

  • @themroc8231
    @themroc82312 жыл бұрын

    Hey DT! I noticed you never did a video on the Ly TUI display manager. I was curious to know if maybe you didn't like, or maybe you weren't aware of it, because on the face of it one would think that would be right down your alley.

  • @mattiaborda
    @mattiaborda2 жыл бұрын

    This app looks so good 😍😍

  • @kensmith5694
    @kensmith56942 жыл бұрын

    A better way to phrase it is "wine is an interface that allows all well written Windows programs to run under Linux". I have found that the Windows programs that don't work under wine tend to be those that do something that they are not supposed to do like accessing memory they don't own.

  • @michaelharmon5502
    @michaelharmon5502 Жыл бұрын

    Flatseal is a nice GUI program that allows easy editing of individual flatpak app settings to allow access to specific directories if you want.

  • @jeffherdz
    @jeffherdz2 жыл бұрын

    Not that everyone would use this. But you can run Microsoft's SQL server on Redhat. Very simple to do, and directly onto a Redhat server. And without the use of Wine.

  • @DanFre40

    @DanFre40

    2 жыл бұрын

    What about the other aspects of SQL Server? SSIS, SSAS and so on? Can you run those on linux as well?

  • @AsianBear44
    @AsianBear442 жыл бұрын

    Do you think this would work on an immutable os? I'm setting up to use the steamdeck as my only PC, and the browser I use(Vivaldi) doesn't have a flatpak version.

  • @matthiasbenaets
    @matthiasbenaets2 жыл бұрын

    Hey DT, do you maybe know why the registery editor does not save changes?

  • @ararune3734
    @ararune37342 жыл бұрын

    How do you get your terminal to finish your lines and sort of have them hinted with semi transparent text? I'm a Cinnamon Mint user if it matters

  • @bottlesdevs
    @bottlesdevs2 жыл бұрын

    Awesome °-°

  • @selflearning2017
    @selflearning20172 жыл бұрын

    Ive been just wondering whith DE u are using and with distro ?

  • @AadidevSooknananNXS
    @AadidevSooknananNXS2 жыл бұрын

    Could you do more flatpak tutorials?

  • @CrustyAbsconder
    @CrustyAbsconder2 жыл бұрын

    It will be interesting to see which distro comes preloaded with Bottles.

  • @England91

    @England91

    Жыл бұрын

    I would most likely say KDE/Arch as that is what the Steam Deck OS is using as the Steam OS if I remember correctly

  • @VictorRodriguez-zp2do
    @VictorRodriguez-zp2do2 жыл бұрын

    I just checked the bottles github and saw it has over 3k commits! This is the first github repo I have seen with over 3k commits! How did I not know of this project?

  • @dcvalenzuela4540
    @dcvalenzuela4540 Жыл бұрын

    Bottles seems like a promising on how to Run Win apps in Linux. Btw, which would be a better option, Run on Linux or Bottles? Coz I have Bottles on my Fedora 36 xfce but it just taking so much time to load as per 1st run on the software. Another thing, as per picking a distro, I am planing to get into on Redhat umbrella but unfortunately it is liscenced. Will it be good to get use to it by using Fedora or should I go straight up on CentOS?

  • @DaKingof
    @DaKingof2 жыл бұрын

    Instead of winamp I suggest Musicbee. It's incredible software. Only issue I'm having is clicking a music file and having Musicbee open the file. I instead have to find the file inside of musicbee in order to play it. Other than that, this software is a monster of a music player... really, it's incredible. DJ for 20+ years.

  • @TrentR42
    @TrentR42 Жыл бұрын

    Wish you had shown a more complex) complicated view and how to dig into the details. N++ and Irfan are both infamously lightweight and portable programs, so it's no surprise that they work in Bottles / Wine.

  • @peteoffice9587
    @peteoffice95872 жыл бұрын

    I like the idea of running a windows VM, but is there a way to make it run the windows seamless like these bottles, so you can alt tab and feel like you are on one desktop?

  • @fsilvamartins
    @fsilvamartins2 жыл бұрын

    I love your wallpaper, where can I find it?

  • @UltraZelda64
    @UltraZelda642 жыл бұрын

    Anyone who likes Winamp... give Audacious and BMP (Beep Media Player) a try. They have similar interfaces and even support classic Winamp skins, although they are very different in their menu/settings layouts. I'll be honest though... I don't think anything can even *touch* the original Winamp in many ways, to this day. :/ I recall decades ago having issues trying to run Winamp in Wine. I never got it to work work perfectly, and probably haven't even tried in over a decade--but if you really want to try to run Winamp using Wine on Linux, when installing, I would suggest *de-selecting* the modern skin on installation. Winamp with the classic skins was always buggy for me, but at least it *kind of* worked. Who knows, after all this time maybe Wine worked out all the major bugs... but I don't know.

  • @crzyruskie86

    @crzyruskie86

    2 жыл бұрын

    It really whipped the Llamas ass 😥

  • @joe7272
    @joe72722 жыл бұрын

    How does bottles handle more complex software like solidworks or sony vegas?

  • @danielem1989
    @danielem19892 жыл бұрын

    So should I use this or Wine? Thank you.

  • @alishahidi1053
    @alishahidi10532 жыл бұрын

    Thanks 🙏🙏🙏❤️

  • @itsfish8672
    @itsfish86722 жыл бұрын

    Dt i still have windows games that r on CD, like Blackhawk down,Worms an my fav one is One Must Fall.I kept all of my old games,Plus a few utils like Xtgold,Winamp an a lot of cd burning programs.U would like xtgold because it was a os if u did not like windows. PS great vid man.

  • @Zakaros1000
    @Zakaros10002 жыл бұрын

    hello there, hope someone here can answer me. is it lutris sanbox too, or not yet? (I'm a relative new linux user, who has been playing using steam and lutris but I didn't pay attention on that aspect of lutris. I just followed one tutorial about how to install a game using lutris and how to play it so I didn't get too much into the topic outside of it). If that isn't the case, I'm getting the feeling maybe it's is better if I used this to play instead whenever I'm not using directly steam.

  • @duncan-mcrae
    @duncan-mcrae2 жыл бұрын

    Video suggestion: configure your kensington expert tb button mapping in manjaro kde wayland. So little information out there.

  • @pianokeyjoe
    @pianokeyjoe2 жыл бұрын

    I am on a Debian based distro and do not wish to use anything outside the Debian packaging system. Is there a .deb package release somewhere? Like say from another Debian based distro like Sparky or MX or some such?

  • @danielarega6414
    @danielarega64142 жыл бұрын

    You have helped me lots of times and really inproved my linux experiance. Thanks alot. Love your content

  • @ALPHONSO_NANOOK
    @ALPHONSO_NANOOK2 жыл бұрын

    Is it possible to install local exe.files that I already have on my secondary HDD from time when i use to run windows? Greetings from Split/Dalmatia/Croatia :-)

  • @blackend00
    @blackend00 Жыл бұрын

    dose 32bit and 64bit makes any much diffrence ? seems i cant make solidworks to run on bottles and its my only reason that keeps me on windows ...to much things they add to windows that you cant control.

  • @francoissevestre3893
    @francoissevestre38932 жыл бұрын

    I wanted to try it and then i remembered... ther'es no windows apps i want to use.

  • @braaitongs
    @braaitongs Жыл бұрын

    What if the program has not installer, ie it runs straight from th executible? How do you put it in a bottle?

  • @dragomirmari
    @dragomirmari Жыл бұрын

    Is it possible to copy a file from a Linux machine to a memory flash and then copy that file to a windows-run PC?

  • @adas4190
    @adas4190 Жыл бұрын

    Hi. What about running ms store apps. Modern apps. Is it possible to use them on linux please. Thanks

  • @deordered.
    @deordered.2 жыл бұрын

    would appreciate it if somebody answers this, adobe apps? do they run well? anything specific that I need to do prior to installation?

  • @SebastianPerezG
    @SebastianPerezG2 жыл бұрын

    I have a problem , i just installed , finally (the appimage version gets stuck downloading at the beginning ), i download HeidiSQL software , installed , runs everything is great , the problem is that every time i click in any database, jumps from mi first monitor to may second monitor, i move to my first monitor, click another database, and jumps to my second monitor. This could be related to the HeidiSQL or something in wine ?

  • @gwgux
    @gwgux2 жыл бұрын

    Cool, I try to avoid wine like the plague, but that looks like it would be the easiest way to use wine by far.

  • @kensmith5694

    @kensmith5694

    2 жыл бұрын

    Generally, it is better to use a Linux native program. In one case in the past I had to use the windows version via wine even though there was a claimed Linux version. The Linux version was badly messed up. Mostly, however, I only run Linux native stuff.

  • @aleidius192
    @aleidius1922 жыл бұрын

    I've heard some people say that you can't watch blu-rays on Linux but my blu-ray player program runs better with Wine on Linux than it does natively on Windows.

  • @maskedredstonerproz

    @maskedredstonerproz

    2 жыл бұрын

    bahahahhahahaa

  • @aleidius192

    @aleidius192

    2 жыл бұрын

    @@commietube_censorship_sucks Leawo Blu-ray Player. On Windows it would crash every time I tried to skip a chapter or fast forward.

  • @SebastianPerezG

    @SebastianPerezG

    2 жыл бұрын

    Cannot use VLC ?

  • @Buffypoodle
    @Buffypoodle2 жыл бұрын

    What's the difference between installing it with terminal and installing it on the website?

  • @orlandofurioso7329
    @orlandofurioso7329 Жыл бұрын

    Can you add shortcuts from bottles? I can't find the option, i already gave bottles permission from flatseal

  • @krelyx1172
    @krelyx1172 Жыл бұрын

    This is a great guide! But I have a problem, when I load up a exe, like undertale mod tool, it gives me a black screen, but when I click anywhere or hover my cursor over a spot, it shows me parts of the mod tool, but then goes back to black

  • @pigsaag6915
    @pigsaag6915 Жыл бұрын

    bro where chalk up u been, it is so cool

  • @ve2cii
    @ve2cii2 жыл бұрын

    Looks like I found a major bug. In the version I have (2022.2.28-trento-4) when you open the "run executable" it shows only the system folders. Does not show any files. Therefore you cannot run/install anything. You can only use the installers to install and they only install games. I tried to run Flatseal. Wound up messing up the permissions, and bottles would no longer run properly. It was locking up. And the permissions should be set properly in the first place so that external programs don't need to be installed. It should run out of the box as it shows in this video. Oh yes when you go to the Bottles web site using the link, the Forums access does not work. SSL errors. Looks like the SSL needs to be updated over there.

  • @develroad
    @develroad2 жыл бұрын

    🤔Is it possible with this bottles program. Is it possible to install windows hardware over it (device drivers)

  • @kubo407
    @kubo4072 жыл бұрын

    I use windows because strangely enough I need to use OneNote for work. It is probably the biggest reason I have windows, and it doesn't work at all on linux, nor even in wine. I hope it improves

  • @mrsansiverius2083
    @mrsansiverius20832 жыл бұрын

    It's basically playonlinux with some minor additions then?

Келесі