Soluții

How to clear the Printer Queue from Windows and Windows Server

PAS.1 Se deschide Task Manager->Services si dam restart serviciului Print Spooler.

PAS 2. De asemenea, ne asigurăm că este selectată opțiunea Automatic.

PAS 3. Se intră în secțiunea C:\Windows\System32\spool\PRINTERS și se sterg toate fișierele regăsite, mai puțin folderul PRINTERS.

Din server, se poate șterge din Control Panel, din lista imprimantelor, iar dacă problema persistă, se reinstalează imprimanta.

Se intră în Print Manager cu drept de admin->All Drivers->se selectează imprimanta.

[mai mult...]

Arch Linux Installation & Configuration Guide

1. Boot into Arch ISO

  1. Boot from USB and select the Arch Linux option

  2. Confirm internet connection:

    bash
    ping archlinux.org

2. Set Keyboard Layout (if needed)

bash
loadkeys us # or your layout, e.g., de, fr, etc.

3. Update System Clock

bash
timedatectl set-ntp true

4. Partition the Disk

Use fdisk or cfdisk (UEFI example):

bash
cfdisk /dev/sdX

Create:

  • EFI System Partition (e.g. 512M, type: EFI System)

  • Linux filesystem partition

5. Format Partitions

bash
mkfs.fat -F32 /dev/sdX1 # EFI
mkfs.ext4 /dev/sdX2 # Root

6. Mount Partitions

bash
mount /dev/sdX2 /mnt
mkdir /mnt/boot
mount /dev/sdX1 /mnt/boot

7. Install Base System

bash
pacstrap -K /mnt base linux linux-firmware nano

8. Generate fstab

bash
genfstab -U /mnt >> /mnt/etc/fstab

9. Chroot into New System

bash
arch-chroot /mnt

10. Set Timezone

bash
ln -sf /usr/share/zoneinfo/Region/City /etc/localtime
hwclock --systohc

11. Localization

Uncomment your locale in /etc/locale.gen, e.g., en_US.UTF-8 UTF-8, then:

bash
locale-gen
echo "LANG=en_US.UTF-8" > /etc/locale.conf

12. Set Hostname and Hosts File

bash
echo "myhostname" > /etc/hostname

Edit /etc/hosts:

plaintext
127.0.0.1 localhost
::1 localhost
127.0.1.1 myhostname.localdomain myhostname

13. Set Root Password

bash
passwd

14. Install Bootloader (Systemd-boot for UEFI)

bash
bootctl install

Create loader config:

bash
nano /boot/loader/loader.conf
ini
default arch
timeout 3
console-mode max
editor no

Create entry:

bash
nano /boot/loader/entries/arch.conf
ini
title Arch Linux
linux /vmlinuz-linux
initrd /initramfs-linux.img
options root=PARTUUID=xxxxxx rw

Get PARTUUID:

bash
blkid /dev/sdX2

15. Enable Networking

bash
pacman -S networkmanager
systemctl enable NetworkManager

16. Add a User

bash
useradd -mG wheel yourusername
passwd yourusername

Enable sudo for wheel group:

bash
EDITOR=nano visudo
# Uncomment: %wheel ALL=(ALL:ALL) ALL

17. Install Essential Packages

bash
pacman -S base-devel git curl

18. Install a Desktop Environment (Optional)

Example: GNOME

bash
pacman -S gnome gdm gnome-tweaks
systemctl enable gdm

Or KDE:

bash
pacman -S plasma kde-applications sddm
systemctl enable sddm

Or XFCE:

bash
pacman -S xfce4 xfce4-goodies lightdm lightdm-gtk-greeter
systemctl enable lightdm

19. Exit, Unmount, and Reboot

bash
exit
umount -R /mnt
reboot

Remove installation media when rebooting.

[mai mult...]

How to clear browsing history data on your device

To clear your Microsoft Edge browsing data, first decide if you want to delete the data only on the device you’re currently using, or across all synced devices. To clear browsing data just on the device you’re currently using, make sure sync is turned off. If you want to clear browsing data on all synced devices, make sure you are signed in and sync is turned on. Items that are synced will be cleared across all synced devices.

To turn off sync:

  1. Select Settings and moreAn image showing the Settings and more menu in Microsoft Edge.
  2. Go to Settings  > Profiles Sync  and select Turn off sync.

To clear your browsing data in Microsoft Edge:

  1. Select Settings and more  > Settings  > Privacy, search, and services 
  2. Under Delete browsing data Clear browsing data now, select Choose what to clear
  3. Under Time range, choose a time range from the drop-down menu
  4. Choose the types of browsing data you want to clear (see the table below for descriptions).For example, you may want to remove browsing history and cookies but keep passwords and form fill data.
  5. Select Clear now.

Clear browsing data stored in the cloud (if you’ve turned on sync or personalization)

To manage and delete data saved in the Microsoft cloud, see the privacy dashboard. On the privacy dashboard you can view or delete your data. Data that you delete on the privacy dashboard won’t be deleted from your device.

Browsing data you can delete in Microsoft Edge

Types of info What will be deleted Where it’s stored
Browsing history The URLs of sites you’ve visited, and the dates and times of each visit. On your device (or, if sync is turned on, across your synced devices)
Download history The list of files you’ve downloaded from the web. This only deletes the list, not the actual files that you’ve downloaded. On your device
Cookies and other site data Information and data that websites store on your device to remember your preferences, such as sign-in info, your location, or media licenses. On your device
Cached images and files Copies of pages, images, and other media content stored on your device. The browser uses these copies to load content faster the next time you visit those sites. On your device
Passwords Site passwords that you’ve saved. On your device (or, if sync is turned on, across your synced devices)
Autofill form data (includes forms and cards)  Info that you’ve entered into forms, such as your email, credit card, or a shipping address. On your device (or, if sync is turned on, across your synced devices)
Site permissions Go to Settings and more  > Settings  > Cookies and site permissions to see a list for each website, including location, cookies, pop-ups, and media autoplay. On your device
All data from the previous version of Microsoft Edge All data including history, favorites, passwords, and more from the legacy version of Microsoft Edge. On your device (or, if sync is turned on, across your synced devices)
Media Foundation data Includes licenses, certificates, keys, and more. Data is cleared after you restart the Microsoft Edge browser. On your device (or, if sync is turned on, across your synced devices)
[mai mult...]

Build Linux Software from source in 3 easy steps

Programs that you run on your computer are either interpreted or compiled. The former are text files containing the code that another program—an interpreter—will read and execute when you run them. The latter are standalone binary files that contain machine code and run directly.Compiled executables are very common, especially for larger programs. When you build from source, you use a compiler—like gcc—to generate an executable from the application’s source code, which may be distributed across many individual files.

Because building from source can be a complex and lengthy process, it is usually automated via another program, most often Make. You can write makefiles to control how a project builds its final executable program.In more complicated projects, makefiles themselves get large and unwieldy. This is especially true for portable apps that need to work across different architectures and environments. To cater to these situations, many projects generate their makefiles automatically using a tool called autoconf/automake.

[mai mult...]