Feed aggregator

Delta Inks Exclusive Pact With YouTube For In-Flight Viewing

Slashdot.org - 11 hours 1 min ago
Delta Air Lines has partnered with YouTube to provide ad-free YouTube Premium and YouTube Music to SkyMiles members on flights. "The deal includes a selection of curated content from key YouTube creators," notes Variety. The airline also said it would upgrade its fleet with better Wi-Fi and 4K HDR QLED displays, alongside AI-driven enhancements like a personal assistant on the Fly Delta app to improve travel experiences. From the report: Delta executives announced the YouTube deal and other flight-experience enhancements to its Delta Sync platform as the aviation giant gave an expansive presentation Tuesday evening at the Sphere in Las Vegas, in connection with the Consumer Electronics Show. Delta touted plans to mark the company's 100th anniversary this year, noting that it is the first airline to reach the centennial mark. It's also no surprise that Delta is leaning hard into AI tech. The company hopes its Delta Concierge AI-powered personal assistant feature that is rolling out this year on its Fly Delta app will make strides in improving the overall customer experience. The goal is that with repeated use the Concierge tool will come to anticipate individual consumers' needs and help them streamline the logistics of travel -- or what Delta dubbed "contextualized guidance" on everything from departure gates to baggage claim details to alerting travelers to weather conditions at their destinations. [...] Mary Ellen Coe, chief business officer of YouTube, emphasized that the ad-free YouTube offering will allow viewers to access streaming content as well as podcasts and music. She also asserted that consumers are increasingly gathering travel tips and inspiration through YouTube creators. "Creators are producing the must-see TV of today," Coe said.

Read more of this story at Slashdot.

How to run Docker inside Incus containers

nixCraft - 12 hours 25 min ago
Incus and Docker both use Linux kernel features to containerize your applications. Incus is best suited when you need system-level containers that act like traditional VMs and provide a persistent developer experience. On the other hand, Docker containers are ephemeral, i.e., temporary in nature. All files created inside Docker containers are lost when your Docker container is stopped or removed unless you stored them using volumes in different directories outside Docker. Docker is created as a disposable app deployment system. Incus containers are not typically created as disposables, and data is kept inside when they are stopped. Because of the Linux kernel support nesting feature, you can run Docker inside Incus. This page explains how to run Docker inside Incus containers. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to run Docker inside Incus containers appeared first on nixCraft. 2024-12-18T05:44:26Z 2024-12-18T05:44:26Z Vivek Gite

MySQL Change root Password Command

nixCraft - 12 hours 25 min ago
How do I change MySQL root password under Linux, FreeBSD, OpenBSD and UNIX-like like operating system over the ssh session? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post MySQL Change root Password Command appeared first on nixCraft. 2024-12-09T16:19:00Z 2024-12-09T16:19:00Z Vivek Gite

How to enable mouse to copy & paste in vim

nixCraft - 12 hours 25 min ago
Some Linux distro like Debian or specific BSD variants provide very little configuration support for mouse out of the box for Vim. Let us see how to paste in Vim using a mouse by enabling support, which is useful for new developers and sysadmin coming from Windows background. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to enable mouse to copy & paste in vim appeared first on nixCraft. 2024-11-28T13:44:35Z 2024-11-28T13:44:35Z Vivek Gite

How to install vnstat on Debian 12/11 to monitor network interface bandwidth usage

nixCraft - 12 hours 25 min ago
Do you need to keep track of the network traffic (bandwidth) usage for the Network interface controller (NIC) of your Debian Linux-based cloud or bare metal server? Look no forward. Try the vnStat, a free and open-source console-based network traffic monitor that keeps a log of 5-minute intervals, hourly, daily, monthly, and yearly network traffic for the selected interface. Once installed, vnStat can be used even without root permissions on most systems. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to install vnstat on Debian 12/11 to monitor network interface bandwidth usage appeared first on nixCraft. 2024-11-27T19:07:02Z 2024-11-27T19:07:02Z Vivek Gite

How to find hard disk (SSD) serial numbers in Linux

nixCraft - 12 hours 25 min ago
You need to use the smartctl command to display the hard disk (SSD) serial numbers in Linux. This is useful when changing your hard disk if it goes bad. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to find hard disk (SSD) serial numbers in Linux appeared first on nixCraft. 2024-11-16T21:38:35Z 2024-11-16T21:38:35Z Vivek Gite

How to install kvm-ok on Debian or Ubuntu Linux

nixCraft - 12 hours 25 min ago
The KVM-ok command command will tell you if your Debian or Ubuntu Linux-powered server can host hardware-accelerated KVM virtual machines. KVM (Kernel-based Virtual Machine) is a free and open-source virtualization technology that is used with every Linux kernel. In other words, KVM will make your Linux computer into a hypervisor, allowing you to run multiple isolated virtual machines (VMs) on a single physical machine. However, KVM depends upon CPU hardware virtualization extensions like Intel VT-x or AMD-V to provide high-performance virtual machines. This support must be enabled in the BIOS. Apart from that, some cloud service providers also allow nested virtualization that will help you to run VMs inside your instances. However, this may not be enabled in BIOS or instance configuration. Thus, you need to install the kvm-ok command to determine whether such support exists. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to install kvm-ok on Debian or Ubuntu Linux appeared first on nixCraft. 2024-11-16T06:54:11Z 2024-11-16T06:54:11Z Vivek Gite

zcommands: Read gzip Compressed Text Files On a Fly on Linux and Unix

nixCraft - 12 hours 25 min ago
Linux and Unix like operating systems comes with z* commands. These commands allow you to read gzip compressed text files using zless, zcat, zmore, and friends commands. The gzip command reduces the size of the files using Lempel-Ziv coding (LZ77). Whenever possible, each file is replaced by one with the extension .gz while keeping the same ownership modes, access, and modification times. z* commands have some cool usage too, such as display the current time in different zonename. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post zcommands: Read gzip Compressed Text Files On a Fly on Linux and Unix appeared first on nixCraft. 2024-11-01T20:34:07Z 2024-11-01T20:34:07Z Vivek Gite

How do I unzip multiple / many files under Linux?

nixCraft - 12 hours 25 min ago
I have lots of files in a directory called /disk2/images/. All files are in zip file format, so I am using the following command to extract zip files:      unzip *.zip The command result into an error which read as follows:      caution: filename not matched How do I unzip multiple or many zip files under a Linux/Unix-like system? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How do I unzip multiple / many files under Linux? appeared first on nixCraft. 2024-09-27T19:56:29Z 2024-09-27T19:56:29Z Vivek Gite

Linux / UNIX View Only Configuration File Directives ( Uncommented Lines of a Config File )

nixCraft - 12 hours 25 min ago
Most Linux and UNIX-like system configuration files are documented using comments, but sometimes I just need to see a line of configuration text in a config file. How can I view just the uncommented configuration file directives from squid.conf or httpd.conf file? How can I strip out comments and blank lines on a Linux or Unix-like system? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Linux / UNIX View Only Configuration File Directives ( Uncommented Lines of a Config File ) appeared first on nixCraft. 2024-09-21T12:33:38Z 2024-09-21T12:33:38Z Vivek Gite

Linux turn OFF password expiration / aging

nixCraft - 12 hours 25 min ago
The /etc/shadow file stores the actual password in encrypted format using a hash (salted) function for the user's account with additional properties related to the user passwords, such as password expiration date or password aging. The /etc/passwd stores usernames and their properties, such as home directory, login shell, and more. The password expiration information for a user is contained in the last six fields. The Linux password expiration for a select user can be disabled by editing the /etc/shadow file. However, I recommend using the chage command for safety reasons. The chage command changes the number of days between password changes and the last password change date. The Linux system uses this information to determine when users must change their passwords. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Linux turn OFF password expiration / aging appeared first on nixCraft. 2024-09-20T11:46:01Z 2024-09-20T11:46:01Z Vivek Gite

Linux / UNIX: DNS Lookup Command

nixCraft - 12 hours 25 min ago
How do I perform DNS lookup under Linux, UNIX, or Apple macOS (OS X) operating systems without using 3rd party websites for troubleshooting DNS usage? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Linux / UNIX: DNS Lookup Command appeared first on nixCraft. 2024-09-13T11:37:45Z 2024-09-13T11:37:45Z Vivek Gite

Linux Copy One Hard Disk to Another Using dd Command

nixCraft - 12 hours 25 min ago
How can I copy one hard disk to another using the dd, ddrescue, or dcfldd commands? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Linux Copy One Hard Disk to Another Using dd Command appeared first on nixCraft. 2024-09-09T20:04:33Z 2024-09-09T20:04:33Z Vivek Gite

Shell script to set up an LXD / Incus (Linux Containers) lab for testing purpose

nixCraft - 12 hours 25 min ago
LXD or Incus is a Linux operating system-level container system. You can build over 25+ Linux distros for testing, fun, and profit. You can even run GUI apps inside those containers and get output displayed back to your X display easily. For example, you can run Firefox in one Linux container for banking needs with custom add-ons, including specific firewall rules just for allowing outgoing banking and nothing else. You can have another container to run Chromium/Edge/FF for social media. Of course, it is not a replacement for something like Qubes OS, but you can do many things in an isolated environment. You can try a new Linux distro without the VM's overheads and test new features offered by that distro. All Linux containers will share the same Linux kernel and hardware devices as your GPU. Here is a quick shell script to build a quick lab to test various Linux distros. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Shell script to set up an LXD / Incus (Linux Containers) lab for testing purpose appeared first on nixCraft. 2024-08-16T12:06:18Z 2024-08-16T12:06:18Z Vivek Gite

How To check LXD/Incus container BTRFS disk usage on Linux

nixCraft - 12 hours 25 min ago
Here is a quick and dirty shell script I put to check LXD or Incus container size and how much space they are taking on the BTRFS subvolume. Naturally, you must run the script as a root user, and LXD or Icnus must be configured with BTRFS storage backend on Linux operating systems. See how to set up and install LXD on Ubuntu 20.04 LTS or installing Incus on Debian 12/11 using the apt command. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How To check LXD/Incus container BTRFS disk usage on Linux appeared first on nixCraft. 2024-08-15T21:42:09Z 2024-08-15T21:42:09Z Vivek Gite

Linux shell script to reduce PDF file size

nixCraft - 12 hours 25 min ago
Here is a handy and useful Linux and Unix shell script that reduce PDF file size using Ghostscript. No need to upload your PDF file to the shady third-party website. Just do it from the terminal. I tested it with both CentOS and Ubuntu/Debian Linux. It should work with macOS, FreeBSD and other Unix-like systems as long as you have the Ghostscript installed. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Linux shell script to reduce PDF file size appeared first on nixCraft. 2024-07-30T22:56:26Z 2024-07-30T22:56:26Z Vivek Gite

Syndicate content
Comment