Stații de lucru

OS - Windows 9037 Solutii

Reguli si plangeri 11 Solutii

OS - OS X 410 Solutii

Reguli de configurare 12 Solutii

Licentiere 18 Solutii

Securitate 182 Solutii

Copie de rezerva (Backup) 68 Solutii

Antivirus 72 Solutii

Aplicatii specifice 5206 Solutii

Hardware 291 Solutii

Remediere probleme acces statie de lucru in domeniu

Pentru a reintroduce o stație de lucru (calculator) în domeniul Active Directory nume.local, trebuie să parcurgi un proces în doi pași: mai întâi scoți calculatorul din domeniu trecându-l într-un grup de lucru (Workgroup), iar apoi îl adaugi din nou.
Înainte de a începe, asigură-te că deții un cont de administrator local al calculatorului și un cont de administrator de domeniu (sau un utilizator cu drepturi de adăugare în domeniu).
Iată pașii detaliați:

Pasul 1: Scoaterea calculatorului din domeniu

  1. Apasă tastele Windows + R, scrie sysdm.cpl și apasă Enter (se va deschide fereastra System Properties).
  2. În tab-ul Computer Name, fă click pe butonul Change… (Modificare).
  3. În fereastra nouă, la secțiunea Member of (Membru al), schimbă selecția de la Domain la Workgroup.
  4. Scrie orice nume generic pentru grupul de lucru (de exemplu: WORKGROUP).
  5. Apasă OK. Sistemul îți va cere credențialele unui administrator. Introdu contul și parola de administrator local al PC-ului (sau de domeniu).
  6. Va apărea un mesaj de întâmpinare: “Welcome to the WORKGROUP workgroup”. Apasă OK.
  7. Sistemul îți va cere să repornești calculatorul. Apasă Restart Now.

Pasul 2: Curățarea obiectului vechi din Active Directory 

Dacă ai acces la serverul Domain Controller, este ideal să ștergi sau să resetezi contul vechi al calculatorului din consola Active Directory Users and Computers pentru a evita conflictele de securitate. Dacă nu ai acces, poți trece direct la Pasul 3 (Windows va încerca să suprascrie obiectul existent).

Pasul 3: Re-introducerea în domeniu

  1. După repornire, loghează-te pe calculator folosind contul de administrator local.
  2. Asigură-te încă o dată că IP-ul DNS al plăcii de rețea este setat corect pe IP-ul serverului (așa cum am configurat anterior).
  3. Apasă din nou Windows + R, scrie sysdm.cpl și apasă Enter.
  4. Fă click pe butonul Change….
  5. La secțiunea Member of, selectează din nou Domain și scrie numele complet: nume.local
  6. Apasă OK.
  7. Pe ecran va apărea o fereastră care îți cere numele de utilizator și parola. Introdu aici contul de Administrator al domeniului (sau un utilizator autorizat din companie).
  8. Dacă totul este în regulă, vei primi mesajul: “Welcome to the nume.local domain”.
  9. Apasă OK și confirmă repornirea calculatorului (Restart Now).

După această ultimă repornire, utilizatorul își va putea folosi din nou contul de companie pentru a se loga pe calculator.

[mai mult...]

How to install the new Windows 11 KB5095093 update

Microsoft has begun rolling out Windows 11 KB5095093, a preview update for versions 25H2 and 24H2. This update adds a new point-in-time restore feature, the ability to pause Windows updates up to 35 days, and improvements across File Explorer, Bluetooth, audio, networking, widgets, accessibility, and overall system reliability.

[mai mult...]

Bluestar Linux installation guide

Download Bluestar Linux

Download the latest ISO from the project’s download page or SourceForge mirror. Verify the checksum if available before creating installation media.

Create a Bootable USB

Linux

sudo dd if=bluestar-linux.iso of=/dev/sdX bs=4M status=progress oflag=sync

Replace /dev/sdX with your USB device.

Windows

Recommended tools:

  • Rufus
  • Ventoy
  • balenaEtcher
Boot the Installer
  1. Insert the USB drive
  2. Open your computer’s boot menu
  3. Select the USB device
  4. Boot into the Bluestar Live environment.
Explore the Live Environment

Before installing, verify that:

  • Graphics work correctly.
  • Wi-Fi connects successfully.
  • Audio functions properly.
  • Touchpad and keyboard operate normally.

If everything works in the live session, it will usually work after installation.

Launch the Installer

Double-click the installer icon on the desktop.

The installer guides you through:

  • Language
  • Keyboard layout
  • Time zone
  • Disk partitioning
  • User creation
  • Bootloader installation
Disk Partitioning

Automatic Partitioning

Recommended for new users.

The installer automatically creates:

  • EFI System Partition
  • Root partition
  • Swap (if configured)
Manual Partitioning

Example layout:

Partition Size Filesystem Mount Point
EFI 512 MB FAT32 /boot/efi
Root 40 GB ext4 /
Home Remaining ext4 /home
Swap 4–8 GB swap

For UEFI systems, ensure the EFI partition is formatted as FAT32.

Specify:

  • Username
  • Password
  • Computer hostname
  • Administrator privileges

Use a strong password.

Bootloader Installation

Bluestar installs GRUB automatically for both UEFI and legacy BIOS systems. After installation, reboot and remove the USB drive.

First Boot

Log into KDE Plasma.

Open Konsole to update the system.


Update the System

sudo pacman -Syu

Because Bluestar is a rolling-release distribution, frequent updates are recommended.

Configure Mirrors

Install reflector if desired:

sudo pacman -S reflector

Generate a mirror list:

sudo reflector \
--country "United States" \
--latest 20 \
--protocol https \
--sort rate \
--save /etc/pacman.d/mirrorlist

Then update:

sudo pacman -Syyu
Install Development Tools
sudo pacman -S base-devel git

These packages are required for building software from the Arch User Repository.

Install an AUR Helper

Example using yay:

git clone https://aur.archlinux.org/yay.git

cd yay

makepkg -si

You can now install AUR packages:

yay -S visual-studio-code-bin
Install Graphics Drivers

Intel

sudo pacman -S mesa vulkan-intel intel-media-driver

AMD

sudo pacman -S mesa vulkan-radeon

NVIDIA

sudo pacman -S nvidia nvidia-utils

Reboot after installing proprietary NVIDIA drivers.

Enable Printing
sudo pacman -S cups system-config-printer

Enable the service:

sudo systemctl enable --now cups
Configure Audio

Modern Bluestar releases use PipeWire.

Install additional packages if needed:

sudo pacman -S

pipewire

pipewire-pulse

wireplumber

Verify:

pactl info
Install Common Applications

Office

sudo pacman -S libreoffice-fresh

Browser

sudo pacman -S firefox

Media

sudo pacman -S vlc

Image Editing

sudo pacman -S gimp

Development

sudo pacman -S

python

gcc

clang

cmake

rust

go
Configure Firewall

Install UFW:

sudo pacman -S ufw

Enable:

sudo systemctl enable --now ufw

Allow SSH if needed:

sudo ufw allow ssh

Enable firewall:

sudo ufw enable
Install Flatpak
sudo pacman -S flatpak

Add Flathub:

flatpak remote-add --if-not-exists flathub \
https://flathub.org/repo/flathub.flatpakrepo

Install applications:

flatpak install flathub org.libreoffice.LibreOffice
Configure Snapshots (Optional)

Install Timeshift:

sudo pacman -S timeshift

Configure scheduled snapshots for easy recovery after updates.

Enable SSD TRIM
sudo systemctl enable fstrim.timer

Verify:

systemctl status fstrim.timer
Useful KDE Configuration

Open System Settings to configure:

  • Display scaling
  • Global theme
  • Window behavior
  • Power management
  • Night Color
  • Virtual desktops
  • Keyboard shortcuts
Useful Pacman Commands

Update system:

sudo pacman -Syu

Search packages:

pacman -Ss package

Install package:

sudo pacman -S package

Remove package:

sudo pacman -R package

Remove package and dependencies:

sudo pacman -Rns package

Clean package cache:

sudo pacman -Sc
[mai mult...]