Main public logs

From Mintarc Forge

Combined display of all available logs of Mintarc Forge. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 08:07, 20 February 2025 Tommy talk contribs created page Repository and Package Management (Created page with "==manage packages using APT== *Install a package: **sudo apt install package_name *Update package lists: **sudo apt update *Upgrade installed packages: **sudo apt upgrade *Remove a package: **sudo apt remove package_name ==Find a package containing a specific file== apt-file search filename *Get package information: **apt show package_name *Check if a package is installed: **apt list --installed | grep package_name *View package dependencies: **apt-cache depends...")
  • 08:04, 20 February 2025 Tommy talk contribs created page Perform basic file edits using an editor (Created page with "== vi/vim - Visual editor== Mode switching: i: Enter insert mode at cursor o: Open new line below cursor and enter insert mode a: Enter insert mode after cursor ESC: Return to command mode Navigation: h: Move left j: Move down k: Move up l: Move right Saving and exiting: ZZ: Save and exit :w!: Force save :q!: Force quit without saving :e!: Reload file, discarding changes Editing: c: Change (delete and enter insert mode) d: Delete p: Paste after cursor y: Yank (copy)...")
  • 08:02, 20 February 2025 Tommy talk contribs created page Search text files using regular expressions (Created page with "==Creating a simple regular expression== A basic regular expression to match email addresses: \b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+.[A-Z|a-z]{2,}\b This pattern matches: One or more word characters, dots, underscores, or plus signs before the @ symbol One or more word characters or dots after the @ symbol A dot followed by two or more letters for the top-level domain Using regular expression tools for searches: ==grep: Basic regular expression searchin...")
  • 08:00, 20 February 2025 Tommy talk contribs created page Use streams, pipes and redirects (Created page with "== Redirecting standard input, output, and error== < : Redirect input from a file Example: sort < unsorted.txt *This reads the contents of unsorted.txt as input for the sort command. Redirect output to a file (overwrite) Example: ls -l > file_list.txt *This writes the output of ls -l to file_list.txt, overwriting existing content. Redirect output to a file (append) Example: echo "New line" >> log.txt *This appends "New line" to the end of log.txt. ==2>&1 : Redirect...")
  • 07:56, 20 February 2025 Tommy talk contribs created page Process text stream with filters (Created page with "== cat - Concatenate and display file contents == Example: cat file.txt | tr 'a-z' 'A-Z' *This command displays the contents of file.txt and converts all lowercase letters to uppercase1. == cut - Remove sections from lines == Example: cat /etc/passwd | cut -d: -f1,7 *This extracts the username and shell fields from the passwd file5. == head - Display the beginning of a file == Example: cat long_file.txt | head -n 5 *This shows the first 5 lines of long_file.txt1. == t...")
  • 02:27, 20 February 2025 Tommy talk contribs created page File placement and search (Created page with "The Filesystem Hierarchy Standard (FHS) defines the directory structure and directory contents in Linux and other Unix-like operating systems. Here's an overview of important file locations, directory purposes, and commands for file placement and search: */bin: Essential command binaries for all users */boot: Boot loader files and kernels */etc: Host-specific system configuration files */home: User home directories */lib: Essential shared libraries and kernel modules */...")
  • 02:11, 20 February 2025 Tommy talk contribs created page Hard and symbolic links Weight (Created page with "== n - Create links between files == Examples: *ln file1 file2: Create a hard link named file2 pointing to file1 *ln -s source target: Create a symbolic link named target pointing to source *ln -f existing_file new_link: Force creation of link, overwriting if it exists == ls - List directory contents, including link information == Examples: *ls -l: Long listing format, shows link count and symlink targets *ls -i: Display inode number for each file *ls -lF: Append indica...")
  • 02:03, 20 February 2025 Tommy talk contribs created page Perform basic file management (Created page with "==test==")
  • 01:58, 20 February 2025 Tommy talk contribs created page Directory Manipulation and Management (Created page with "== chmod - Change file mode bits == chmod modifies the permissions of files and directories. Examples: *chmod 755 file.txt: Set read, write, execute for owner; read, execute for group and others *chmod u+x script.sh: Add execute permission for the owner *chmod go-w shared_file: Remove write permission for group and others *chmod -R 644 directory/: Recursively set permissions for files in a directory == ls - List directory contents == ls lists files and directories, inc...")
  • 00:31, 20 February 2025 Tommy talk contribs created page Desktop environment (Created page with "== startx - Start the X Window System == startx is a script that initializes the X Window System session. It sets up the environment and launches the X server along with initial clients. Examples: *startx: Start the X session with default settings *startx -- :1: Start X on display :1 *startx ~/.xinitrc: Use a custom initialization script == X server - Core component of the X Window System == The X server manages the display, keyboard, and mouse, handling rendering and...")
  • 00:30, 20 February 2025 Tommy talk contribs created page Create monitor and terminate process (Created page with "== & - Run a command in the background == The & symbol is used to run a command or script in the background, allowing you to continue using the terminal. Examples: *long_running_script.sh &: Run the script in the background *sleep 60 &: Run the sleep command for 60 seconds in the background *nohup command &: Run a command in the background, immune to hangups == bg - Resume suspended jobs in the background == bg resumes execution of a suspended job in the background. E...")
  • 00:29, 20 February 2025 Tommy talk contribs created page SystemD Stuff (Created page with "== systemctl - Control the systemd system and service manager == systemctl is the primary command-line tool for interacting with systemd, the init system and service manager for modern Linux distributions. It allows users to manage system services, check their status, and control various aspects of the system. Examples: *systemctl start apache2.service: Start the Apache web server service *systemctl stop mysql.service: Stop the MySQL database service *systemctl restart...")
  • 00:17, 20 February 2025 Tommy talk contribs created page SSH Stuff (Created page with "== ssh - Secure Shell for remote system access == ssh is used to securely log into remote systems, execute commands on remote machines, and create encrypted tunnels for various network services. Examples: *ssh user@example.com: Connect to example.com as "user" *ssh -p 2222 user@example.com: Connect using a non-standard port (2222) *ssh -i ~/.ssh/my_key user@example.com: Use a specific private key for authentication *ssh user@example.com 'ls -l /tmp': Execute a command...")
  • 00:14, 20 February 2025 Tommy talk contribs created page Common Commands with examples (Created page with "These commands and their usage are used for both the LinuC Level 1 Exam 101 and Exam 102. Using these commands in various scenarios to become proficient in basic command-line tasks, file management, and system administration. == ls - List directory contents == The ls command is used to list files and directories in a specified location. It has many options to customize the output. Examples: *ls -l: Long listing format, showing permissions, owner, size, and modification...")
  • 14:02, 19 February 2025 Tommy talk contribs created page Linux stuff (Created page with "= Linux Stuff =")
  • 04:33, 11 February 2025 Tommy talk contribs created page Lufi (Created page with "Lufi, short for "Let’s Upload that FIle," is an open-source, self-hosted file-sharing platform that prioritizes privacy and security through end-to-end encryption (E2E). Designed as a lightweight and user-friendly solution, Lufi allows users to securely upload, share, and manage files without relying on third-party cloud services. It is particularly well-suited for individuals or organizations seeking a private alternative to mainstream file-sharing platforms like WeTr...")
  • 04:26, 11 February 2025 Tommy talk contribs created page Sharry (Created page with "The file-sharing version of Sharry is an open-source, self-hosted web application designed to facilitate secure and straightforward file transfers. It allows authenticated users to upload files and generate unique download links. These links can include optional passwords and expiration dates, ensuring that shared files remain accessible only for a limited time. The files are stored on the server in encrypted zip archives, using AES encryption. If a password is provided,...")
  • 04:19, 11 February 2025 Tommy talk contribs created page Gokapi (Created page with "Gokapi is an open-source, lightweight file-sharing server designed for self-hosted environments. It provides a secure and flexible way to share files that automatically expire after a set number of downloads or days. Positioned as an alternative to the discontinued Firefox Send, Gokapi emphasizes simplicity, privacy, and customization, making it ideal for individuals and organizations that want full control over their file-sharing infrastructure. It allows administrator...")
  • 04:14, 11 February 2025 Tommy talk contribs created page OnionShare (Created page with "OnionShare is an open-source tool designed for secure, anonymous file sharing, website hosting, and communication over the Tor network. Initially released in 2014, it has evolved into a versatile platform that prioritizes privacy and anonymity. By leveraging Tor's onion services, OnionShare ensures that users can share files, host websites, and chat without exposing their identities or relying on centralized servers. This makes it particularly valuable for journalists, a...")
  • 04:08, 11 February 2025 Tommy talk contribs created page CozyCloud (Created page with "Cozy Cloud is an open-source, privacy-focused personal cloud platform designed to help individuals and organizations regain control over their digital data. Based in France, Cozy Cloud offers a suite of integrated applications for file storage, password management, financial tracking, and note-taking, all within a single, user-friendly ecosystem. Its mission is to provide a secure and decentralized alternative to mainstream cloud services like Google Drive or Dropbox, em...")
  • 04:03, 11 February 2025 Tommy talk contribs created page PydioCells (Created page with "Pydio Cells is a modern, open-source file sharing, synchronization, and document management platform designed to provide businesses and organizations with secure, scalable, and customizable solutions for managing their data. Built with a focus on privacy, flexibility, and enterprise-grade features, Pydio Cells enables users to maintain complete control over their files by hosting the platform on their own infrastructure or integrating it with existing storage systems. It...")
  • 03:51, 11 February 2025 Tommy talk contribs created page SparkleShare (Created page with "SparkleShare is an open-source file synchronization and collaboration tool that offers a decentralized and self-hosted alternative to proprietary cloud services like Dropbox. It is particularly designed for teams and individuals who value privacy, version control, and seamless integration with Git-based workflows. SparkleShare allows users to synchronize files across devices in real time while maintaining full control over their data by hosting repositories on private se...")
  • 03:45, 11 February 2025 Tommy talk contribs created page SynchThing (Created page with "Syncthing is an open-source, peer-to-peer file synchronization application designed to provide secure, decentralized, and real-time file syncing across devices. It operates without the need for a central server, giving users complete control over their data. Syncthing is compatible with multiple operating systems, including Windows, macOS, Linux, Android, BSD, Solaris, and others, making it a versatile solution for individuals and organizations seeking to synchronize fil...")
  • 03:36, 11 February 2025 Tommy talk contribs created page FileCloud (Created page with "FileCloud is a enterprise-grade platform for secure file storage, synchronization, sharing, and collaboration. Designed to provide organizations with complete control over their data, FileCloud offers a self-hosted or hybrid alternative to proprietary cloud services like Google Drive, Dropbox, and Microsoft OneDrive. It caters to businesses, government agencies, educational institutions, and other organizations that prioritize security, compliance, and flexibility in fil...")
  • 03:33, 11 February 2025 Tommy talk contribs deleted page SeeFile (content was: "#REDIRECT SeaFile", and the only contributor was "Tommy" (talk))
  • 03:32, 11 February 2025 Tommy talk contribs undeleted page SeaFile (2 revisions)
  • 03:32, 11 February 2025 Tommy talk contribs deleted page SeaFile (content was: "Seafile is an open-source file synchronization, sharing, and collaboration platform designed to deliver security, and scalability. It provides a self-hosted alternative to proprietary cloud services like Dropbox, Google Drive, and Microsoft OneDrive, enabling users to maintain full control over their data while benefiting from advanced features for file management and collaboration....", and the only contributor was "Tommy" (talk))
  • 03:30, 11 February 2025 Tommy talk contribs moved page SeeFile to SeaFile
  • 03:29, 11 February 2025 Tommy talk contribs created page SeeFile (Created page with "Seafile is an open-source file synchronization, sharing, and collaboration platform designed to deliver security, and scalability. It provides a self-hosted alternative to proprietary cloud services like Dropbox, Google Drive, and Microsoft OneDrive, enabling users to maintain full control over their data while benefiting from advanced features for file management and collaboration. Seafile is widely adopted by individuals, enterprises, educational institutions, and gove...")
  • 03:23, 11 February 2025 Tommy talk contribs created page NextCloud (Created page with "Nextcloud is an open-source, self-hosted platform for file synchronization, sharing, and collaboration. It is designed to provide individuals, businesses, and organizations with full control over their data while offering a comprehensive suite of tools for productivity and communication. As a flexible alternative to proprietary cloud services like Google Workspace, Microsoft 365, or Dropbox, Nextcloud emphasizes data sovereignty, privacy, and security. Its modular archit...")
  • 03:07, 11 February 2025 Tommy talk contribs created page OwnCloud (Created page with "ownCloud is an open-source file synchronization, sharing, and collaboration platform designed to provide organizations and individuals with full control over their data. It serves as a self-hosted alternative to proprietary cloud services like Dropbox, Google Drive, and Microsoft OneDrive, offering privacy, security, and flexibility. With its modular architecture and extensive feature set, ownCloud is widely adopted by enterprises, educational institutions, and governmen...")
  • 03:02, 11 February 2025 Tommy talk contribs created page EtherPad (Created page with "Etherpad is an open-source, real-time collaborative text editor designed to enable seamless teamwork and efficient document editing. Initially launched in 2008, Etherpad was one of the first web-based tools to achieve true real-time collaboration, allowing multiple users to edit a shared document simultaneously while seeing changes reflected instantly. In 2009, Etherpad was acquired by Google and subsequently released as open-source software, making it widely accessible...")
  • 02:57, 11 February 2025 Tommy talk contribs created page EtherCalc (Created page with "EtherCalc is an open-source, web-based collaborative spreadsheet application designed for real-time editing and data sharing. It serves as a lightweight and decentralized alternative to proprietary tools like Google Sheets or Microsoft Excel, offering users the ability to create, edit, and share spreadsheets directly from a browser without requiring account sign-ups or installations. Each spreadsheet in EtherCalc is assigned a unique URL, which can be shared with collabo...")
  • 02:50, 11 February 2025 Tommy talk contribs created page Crypt pad (Created page with "CryptPad is an open-source, privacy-focused collaboration platform designed to provide secure and encrypted tools for document editing, file sharing, and team collaboration. Developed as an alternative to mainstream platforms like Google Docs, CryptPad prioritizes user privacy through its robust implementation of end-to-end encryption. This ensures that all data is encrypted on the user's device before being transmitted to the server, making it inaccessible to service pr...")
  • 02:45, 11 February 2025 Tommy talk contribs created page Calligra Suite (Created page with "Calligra Suite is an open-source office and graphic art software suite developed by the KDE community. It serves as a successor to KOffice and is designed to cater to a wide range of productivity and creative needs, including word processing, spreadsheet management, presentation creation, database handling, vector graphics design, and digital painting. The suite is built on KDE technologies and the Qt framework, ensuring cross-platform compatibility and a modern, respons...")
  • 02:39, 11 February 2025 Tommy talk contribs created page Collabora Online (Created page with "Collabora is an open-source office suite and collaboration platform designed to meet the needs of businesses, governments, educational institutions, and individual users. It is based on LibreOffice technology, which is one of the most widely used open-source office productivity suites globally. Collabora Productivity, the organization behind Collabora Office and Collabora Online, is the largest contributor to the LibreOffice codebase, reflecting its deep integration with...")
  • 02:31, 11 February 2025 Tommy talk contribs created page Apache Open Office (Created page with "Apache Open Office. Apache OpenOffice is an open-source office productivity suite that serves as a successor to the OpenOffice.org project. It provides a comprehensive set of tools for creating and managing various types of documents, including text documents, spreadsheets, presentations, graphics, databases, and mathematical formulas. The suite includes six primary applications: Writer (word processing), Calc (spreadsheets), Impress (presentations), Draw (vector graphi...")
  • 02:26, 11 February 2025 Tommy talk contribs created page Only Office (Only Office)
  • 07:41, 10 February 2025 Tommy talk contribs created page Libre Office (Created page with "= LibreOffice = LibreOffice is a free, and open-source office productivity suite developed by The Document Foundation. It is widely recognized as one of the leading alternatives to commercial office software, such as Microsoft Office, offering a comprehensive set of tools for creating, editing, and managing documents, spreadsheets, presentations, databases, and more. It is designed to be accessible to a global audience and is built on the principles of open collaboration...")
  • 06:17, 8 February 2025 Makoto talk contribs created page Nextcloud (Created page with "==Nextcloudとは==")
  • 05:46, 8 February 2025 Makoto talk contribs created page File:Image6.png
  • 05:46, 8 February 2025 Makoto talk contribs uploaded File:Image6.png
  • 05:45, 8 February 2025 Makoto talk contribs created page File:Image5.png
  • 05:45, 8 February 2025 Makoto talk contribs uploaded File:Image5.png
  • 05:45, 8 February 2025 Makoto talk contribs created page File:Image4-0.png
  • 05:45, 8 February 2025 Makoto talk contribs uploaded File:Image4-0.png
  • 05:43, 8 February 2025 Makoto talk contribs created page File:Image3.png
  • 05:43, 8 February 2025 Makoto talk contribs uploaded File:Image3.png
  • 05:34, 8 February 2025 Makoto talk contribs created page File:Logo default.png
  • 05:34, 8 February 2025 Makoto talk contribs uploaded File:Logo default.png
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)