Feed aggregator

'Copyright Traps' Could Tell Writers If an AI Has Scraped Their Work

Slashdot.org - Fri, 07/26/2024 - 22:30
An anonymous reader quotes a report from MIT Technology Review: Since the beginning of the generative AI boom, content creators have argued that their work has been scraped into AI models without their consent. But until now, it has been difficult to know whether specific text has actually been used in a training data set. Now they have a new way to prove it: "copyright traps" developed by a team at Imperial College London, pieces of hidden text that allow writers and publishers to subtly mark their work in order to later detect whether it has been used in AI models or not. The idea is similar to traps that have been used by copyright holders throughout history -- strategies like including fake locations on a map or fake words in a dictionary. [...] The code to generate and detect traps is currently available on GitHub, but the team also intends to build a tool that allows people to generate and insert copyright traps themselves. "There is a complete lack of transparency in terms of which content is used to train models, and we think this is preventing finding the right balance [between AI companies and content creators]," says Yves-Alexandre de Montjoye, an associate professor of applied mathematics and computer science at Imperial College London, who led the research. The traps aren't foolproof and can be removed, but De Montjoye says that increasing the number of traps makes it significantly more challenging and resource-intensive to remove. "Whether they can remove all of them or not is an open question, and that's likely to be a bit of a cat-and-mouse game," he says.

Read more of this story at Slashdot.

Shell script to see Time-To-Live (TTL) for a DNS record on Linux, Unix, macOS and FreeBSD

nixCraft - Fri, 07/26/2024 - 21:35
TTL is an acronym for Time-To-Live (TTL) in DNS. It sets the time in seconds that a DNS record is allowed to be cached by DNS resolvers (caching server) before it needs to be fetched again from the authoritative name server. In other words, longer TTL can reduce the load on authoritative DNS servers and improve response times by keeping records in the cache longer. The shorter TTL is useful for frequently changing DNS records, as it ensures that updates are propagated quickly across the Internet. Say you want to see the Time-To-Live (TTL) value for a given DNS record for A, AAAA, and MX. Here is a sample shell script that works on Linux, Unix, and macOS. You must have the bash and dig command installed. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Shell script to see Time-To-Live (TTL) for a DNS record on Linux, Unix, macOS and FreeBSD appeared first on nixCraft. 2024-07-26T18:05:44Z 2024-07-26T18:05:44Z Vivek Gite

How to install and configure sudo on Debian Linux

nixCraft - Fri, 07/26/2024 - 21:35
The minimal version of Debian Linux 12/11 does not support sudo. When performing a network installation for Debian, the usual approach is to use the minimum version, which only installs the essential packages. Most Linux container images based upon Debian also skip sudo, and if your project needs sudo, then read on how to install and configure sudo and grant access to a user on a Debian Linux version 12/11. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to install and configure sudo on Debian Linux appeared first on nixCraft. 2024-07-25T23:06:18Z 2024-07-25T23:06:18Z Vivek Gite

Shell script to monitor MariaDB replication and send email alert about server health status

nixCraft - Fri, 07/26/2024 - 21:35
Here is a simple shell script to notify secondary read-only replica (slave) MariaDB server health status failure via email and push notification. Master-slave data replication allows you to copy databases to multiple MariaDB servers. It is useful for backup, data recovery, load balancing, and much more. See how to configure SSL-protected MariaDB replication between a master and slave server. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post Shell script to monitor MariaDB replication and send email alert about server health status appeared first on nixCraft. 2024-07-25T12:51:45Z 2024-07-25T12:51:45Z Vivek Gite

How to install incus server on Debian 12/11

nixCraft - Fri, 07/26/2024 - 21:35
Incus is a free and open-source project for the next-gen container management platform. It is a fork of LXD (the container hypervisor). It can manage both Linux containers and virtual machines. Let us see how to install the stable version of the Incus server on Debian 11 or 12 and deploy both containers and VMs for fun and profit. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to install incus server on Debian 12/11 appeared first on nixCraft. 2024-07-23T08:25:44Z 2024-07-23T08:25:44Z Vivek Gite

How to upgrade OpenSUSE 15.5 to 15.6 using the CLI

nixCraft - Fri, 07/26/2024 - 21:35
The most recent release of OpenSUSE Linux, version 15.6 "Leap," is now available. This version incorporates the SUSE Linux Enterprise (SLE) source and community developments, making it the ideal option for a stable Linux experience for users, developers, and system administrators. This page provides instructions on upgrading from OpenSUSE version 15.5 to 15.6 using the command-line interface (CLI). Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to upgrade OpenSUSE 15.5 to 15.6 using the CLI appeared first on nixCraft. 2024-06-30T11:03:25Z 2024-06-30T11:03:25Z Vivek Gite

lnav – Awesome terminal log file viewer for Linux and Unix

nixCraft - Fri, 07/26/2024 - 21:35
It is no secret that whether you are a developer or sysadmin, you need to use log files to troubleshoot errors on your Linux and Unix systems. You use tools like grep, tail, cat, or journalctl to view log files. However, you may need help with so many log files. These essential Unix tools are suitable for basic text but fall short when dealing with many log files. You can get tired from sifting through endless lines of log files. The lnav utility is here to the rescue! It is a powerful log file viewer that goes beyond the basics. It understands your logs by identifying timestamps, log levels, and other vital details. You can run SQLite SQL queries against your standard log files and build reports for your needs. Let us see how to install and use the lnav tool quickly. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post lnav – Awesome terminal log file viewer for Linux and Unix appeared first on nixCraft. 2024-06-16T11:04:42Z 2024-06-16T11:04:42Z Vivek Gite

How to find out AWS EC2 instances type over SSH

nixCraft - Fri, 07/26/2024 - 21:35
AWS offers various instance types, and sometimes, you need to know which one you are using or which one has been deployed by someone else (another developer or sysadmin) for a project. Don't worry. Here are some commands to find the EC2 instance type over SSH without logging into the AWS console. These commands works with any Linux distro or FreeBSD Unix systems. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to find out AWS EC2 instances type over SSH appeared first on nixCraft. 2024-05-26T11:51:12Z 2024-05-26T11:51:12Z Vivek Gite

How to add interface to vnstat to database for monitoring

nixCraft - Fri, 07/26/2024 - 21:35
vnStat is a network traffic monitor for Linux and Unix-like systems. It logs network traffic at different intervals and doesn't require root permissions to run. The implementation involves two commands: vnstat for querying traffic information and vnstatd for data retrieval and storage. Let's see how to add a network interface to vnstat after installation for monitoring purposes. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to add interface to vnstat to database for monitoring appeared first on nixCraft. 2024-05-26T05:56:00Z 2024-05-26T05:56:00Z Vivek Gite

sttr – Awesome Linux & Unix tool for transformation of the string

nixCraft - Fri, 07/26/2024 - 21:35
sttr demo The sttr is a free and open-source command-line tool in Golang that lets you easily change and modify text. You can perform transformation operations on the string, such as hashing text, string manipulation, and more. sttr is beneficial for developers and *nix users requiring swift modification to strings or files directly via the command line or TUI. It is helpful in your scripting, data processing, and automation tasks at the CLI. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post sttr – Awesome Linux & Unix tool for transformation of the string appeared first on nixCraft. 2024-05-24T21:17:45Z 2024-05-24T21:17:45Z Vivek Gite

SSH Authentication refused: bad ownership or modes for file /home/user/.ssh/authorized_keys

nixCraft - Fri, 07/26/2024 - 21:35
I'm trying to login using ssh keys but server is only allows to login me using a password. The following message is logged into my Linux or Unix server /var/log/secure or /var/log/auth.log file: Feb 25 06:36:50 ns5 sshd[26681]: Authentication refused: bad ownership or modes for file /home/user/.ssh/authorized_keys2 Here is another message: May 24 18:28:35 ls-www-1 sshd[531320]: Connection closed by 18.1.2.3 port 43640 [preauth] May 24 18:28:44 ls-www-1 sshd[531322]: Authentication refused: bad ownership or modes for file /home/admin/.ssh/authorized_keys May 24 18:28:44 ls-www-1 sshd[531322]: Connection closed by authenticating user admin 18.1.2.3 port 43650 [preauth] How do I fix this problem? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post SSH Authentication refused: bad ownership or modes for file /home/user/.ssh/authorized_keys appeared first on nixCraft. 2024-05-24T19:23:28Z 2024-05-24T19:23:28Z Vivek Gite

How to upgrade Alpine Linux 3.19 to 3.20

nixCraft - Fri, 07/26/2024 - 21:35
I am using Alpine Linux v3.18 or v3.19 with my LXD/Incus server. How do I upgrade Alpine Linux v3.19 to Alpine Linux v3.20? How can I upgrade Alpine Linux v3.18 to Alpine Linux v3.20? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to upgrade Alpine Linux 3.19 to 3.20 appeared first on nixCraft. 2024-05-24T11:25:52Z 2024-05-24T11:25:52Z Vivek Gite

How to uninstall packages marked “rc” on Debian / Ubuntu Linux

nixCraft - Fri, 07/26/2024 - 21:35
In Debian and Ubuntu Linux, an "rc" status package means the package has been uninstalled, but its configuration files remain on the disk and take up space. Sometimes, certain directories are also in the /var/ directory. When you type the sudo apt remove pkg1 command, it deletes most of the data, but config files are left alone in case you reinstall that package again. You can free up disk space by removing unwanted config files. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to uninstall packages marked “rc” on Debian / Ubuntu Linux appeared first on nixCraft. 2024-05-22T09:30:57Z 2024-05-22T09:30:57Z Vivek Gite

How to reload .vimrc file without restarting vim on Linux/Unix

nixCraft - Fri, 07/26/2024 - 21:35
I am a new vim text editor user. I usually load ~/.vimrc using :vs ~/.vimrc for configuration. Once edited my ~/.vimrc file I need to reload it without having to quit Vim session. How do I edit my ~/.vimrc file and reload it without having to restart Vim on Linux or Unix-like system? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to reload .vimrc file without restarting vim on Linux/Unix appeared first on nixCraft. 2024-05-19T11:03:00Z 2024-05-19T11:03:00Z Vivek Gite

How to temporarily disable IPv6 in Linux

nixCraft - Fri, 07/26/2024 - 21:35
Sometimes, you may need to temporarily disable IPv6 in the Linux using net.ipv6.conf.all.disable_ipv6 kernel variable for testing purposes. You can use the sysctl command to turn IPv6 connectivity on or off without rebooting the system. For example, observe how your app or network reacts when IPv6 connectivity is suddenly lost and only IPv4 is available. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to temporarily disable IPv6 in Linux appeared first on nixCraft. 2024-05-18T20:18:54Z 2024-05-18T20:18:54Z Vivek Gite

TCPDump: Capture and Record Specific Protocols / Port Traffic

nixCraft - Fri, 07/26/2024 - 21:35
How do I capture a specific protocol or port, such as 80 (HTTP) or 443 (HTTPS), using the TCPDump tool under Linux/UNIX? How do I record traffic with TCPDump and find problems later on with my network or server issues? Let's dive into the nitty-gritty of capturing and analyzing your network traffic for trapshooting network and server issues. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post TCPDump: Capture and Record Specific Protocols / Port Traffic appeared first on nixCraft. 2024-05-17T21:00:03Z 2024-05-17T21:00:03Z Vivek Gite

How to find ulimit for user on Linux

nixCraft - Fri, 07/26/2024 - 21:35
How can I find the correct ulimit values for a user account or process on Linux systems? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to find ulimit for user on Linux appeared first on nixCraft. 2024-05-16T21:57:31Z 2024-05-16T21:57:31Z Vivek Gite

How to Set Up UFW Firewall on Ubuntu 24.04 LTS in 5 Minutes

nixCraft - Fri, 07/26/2024 - 21:35
A Ubuntu 24.04 LTS comes with UFW (uncomplicated firewall) that protects the desktop or server against unauthorized access. UFW is an easy-to-use frontend app for a Linux packet filtering system called Netfilter or nftables. Traditionally, Netfilter/nftables rules are set up or configured using the iptables command or nft command by developers and sysadmins. However, new Ubuntu Linux users and developers unfamiliar with firewall concepts find Netfilter/nft syntax confusing. Hence, the ufw project provides an easy-to-use frontend for Ubuntu 24.04 LTS Linux server and desktop. This quick guide makes setting up UFW on Ubuntu 24.04 LTS extremely simple. It provides step-by-step instructions for developers and sysadmins to secure their servers efficiently. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to Set Up UFW Firewall on Ubuntu 24.04 LTS in 5 Minutes appeared first on nixCraft. 2024-05-15T10:09:51Z 2024-05-15T10:09:51Z Vivek Gite

How to use find command to delete all *.log files created in last 90 days except for last 7 days

nixCraft - Fri, 07/26/2024 - 21:35
I have log files created whenever I patch or rebuild Linux containers. They are taking disk space. The logs are helpful if something fails. Otherwise, after a few weeks, those log files have no usage for me. So here is a quick tip on how to use the find command to delete all *.log files created in the last 90 days except for the previous 7 or 10 days. The commands mentioned in these tips are compatible with the Linux, FreeBSD, and macOS versions of the find command. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to use find command to delete all *.log files created in last 90 days except for last 7 days appeared first on nixCraft. 2024-05-15T06:56:03Z 2024-05-15T06:56:03Z Vivek Gite

How to add an IP alias to an EC2 instance on Debian/Ubuntu Linux

nixCraft - Fri, 07/26/2024 - 21:35
An IP alias on Debian, Ubuntu, or any other Linux distros refers to assigning multiple IP addresses to a single network interface. A single network interface card (NIC) can respond to multiple IP addresses and configurations. IP aliases are commonly used for various purposes, such as network segmentation, virtual hosting, load balancing, VPN, split DNS, network testing, and more. Let us see how to add IPv6 and IPv4 IP addresses to your AWS EC2 or Lightsail instance using the CLI without disturbing the IPv4/IPv6 addresses assigned by the AWS DHCP server. These instructions will also work with all other cloud providers, as most providers use DHCP to give you a public IPv4/IPv6 address. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to add an IP alias to an EC2 instance on Debian/Ubuntu Linux appeared first on nixCraft. 2024-05-14T20:43:57Z 2024-05-14T20:43:57Z Vivek Gite

Syndicate content
Comment