Jump to content

FUIT1985

Member
  • Posts

    248
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Italy

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. A sudden shutdown can be caused by a badly connected non-hot-plug device. A system crash can be a logic problem. It depends on the use of the ssd. In any case you should backup your files.
  2. You can try to make a backup of your files and a clean reinstall of Windows.
  3. Hi, actually I think you need a render farm and not a multiseat system. The render farm depends on the graphics program and its licenses. For example blender is free.
  4. Application crashes are usually caused by: 1) an unstable system (due to viruses or due to conflicting applications on the system); 2) RAM. In the second case, simply don't open multiple applications at the same time.
  5. http://pi.hole/admin/ or http://pi.hole/ Source: https://github.com/pi-hole/pi-hole#the-web-interface-dashboard # Run "pihole -d" for a debug token. Make sure you don't have any firewall or iptables settings interfering. Source: https://discourse.pi-hole.net/t/how-do-i-access-pi-holes-dashboard-admin-interface/3168
  6. 1) boot into Internet Recovery mode to take root permissions and an updated copy of OS X Recovery: restart your Mac and hold down Option Command R; select a wireless network from the list and then entering it's password 2) Internet Recovery will then begin downloading a new copy of the OS X Utilities 3) select Disk Utility 4) Format the disk; 5) If you want Reinstall OSX, come back to OSX Utilities
  7. In general, Linux distributions, such as Debian, allow you to download and install metapackages, which are intended for specific sectors: graphics, video, science, etc. But if you want a ready-made distribution for creatives, Ubuntu Studio is the solution for you. Ubuntu Studio: https://ubuntustudio.org/support/ https://ubuntustudio.org/download/ Debian: https://blends.debian.org/games/tasks/ https://blends.debian.org/multimedia/tasks/index.en.html Try other Linux distributions too ...
  8. So you haven't bought a new cable and you are finally able to install the nvidia drivers.
  9. This ubuntu question forum talks about your device: https://askubuntu.com/questions/1164054/cant-install-tp-link-archer-t4u-v3-driver-on-19-04#1164080 I have searched for it with the ID number. rtl8812au-dkms is for version 2. # Install prereqs & reboot $ sudo apt remove rtl8812au-dkms && sudo apt update && sudo apt upgrade && sudo apt install git build-essential dkms && sudo reboot # Pull down the driver source and install it $ git clone https://github.com/cilynx/rtl88x2bu && cd rtl88x2bu/ && VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf) && sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER} && sudo dkms add -m rtl88x2bu -v ${VER} && sudo dkms build -m rtl88x2bu -v ${VER} && sudo dkms install -m rtl88x2bu -v ${VER} && sudo reboot After You just need to enable the wifi interface from the command line. Type the following command to see the name of the wi-fi interface installed on your computer: $ sudo ip link show By default, the kernel attributes generic names such a eth0 (for wired Ethernet) or wlan0 (for WiFi) to the network interfaces. You can activate the wifi interface with the following command (* Obviously you have to replace nameofyourinterface with the name of your wi-fi interface). $ sudo ip link set nameofyourinterface up Then you can use it from the graphical interface of your desktop environment. -------------- Driver for rtl88x2bu wifi adaptors https://github.com/cilynx/rtl88x2bu#driver-for-rtl88x2bu-wifi-adaptors Updated driver for rtl88x2bu wifi adaptors based on Realtek's source distributed with myriad adapters. Realtek's 5.6.1.6 source was found bundled with the Cudy WU1200 AC1200 High Gain USB Wi-Fi Adapter and can be downloaded from Cudy's website. Build confirmed on: Linux version 5.4.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 9.2.1 20200203 (Debian 9.2.1-28)) #1 SMP Debian 5.4.19-1 (2020-02-13) RTL88x2BU linux Installation guide.pdf rtl88x2bu_linux.zip Archer_T4U_V3_Installation_Guide_for_Linux.pdf
  10. Read this... How to Use the ip Command on Linux Furthermore, I report on below an extract that explains why the usb0 interface is already correctly installed, and why it is instead a Manos-_-P typo (when he enters the command to activate the usb0 interface)... In practice, the ip link show command would not list the usb0 interface if it was not correctly installed. Infact the ip link show Manos-_-P output is: 4: usb0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN mode DEFAULT group default qlen 1000 link/ether aa:f0:a9:d3:ef:14 brd ff:ff:ff:ff:ff:ff
  11. Sorry, but I don't need the output of lsusb ... In any case, the system recognizes the USB WiFi interface ... The name assigned to the WiFi usb0 interface (Bus 003 Device 010: ID 2717:ff80 Xiaomi Inc. Mi/Redmi series (RNDIS)) is visible through the command: $ sudo ip link show For example: $ sudo ip link show 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: wlp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT qlen 1000 link/ether 0c:ee:e6:d2:20:c5 brd ff:ff:ff:ff:ff:ff 3: enp4s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000 link/ether 00:24:e8:ed:e3:c2 brd ff:ff:ff:ff:ff:ff In this case enp4s0 is the name assigned to wired Ethernet, instead wlp3s0 is the name assigned to wifi. Then you can activate the wifi usb0 interface with the following command: $ sudo ip link set nameofyourwifi up $ sudo ip link set nameofyourinterface up
  12. I need the output of this command: $ sudo ip link show The usb WiFi must be connected to the USB port.
  13. Yes, No, Maybe... I don't know... After You just need to enable the wifi interface from the command line. Then you can use it from the graphical interface of your desktop environment. Type the following command to see the name of the wi-fi interface installed on your computer: $ sudo ip link show By default, the kernel attributes generic names such a eth0 (for wired Ethernet) or wlan0 (for WiFi) to the network interfaces. Then you can activate the wifi interface with the following command: $ sudo ip link set wlan0 up * Obviously you have to replace wlan0 with the name of your wi-fi interface.
  14. $ sudo apt-get update && sudo apt-get install firmware-realtek In order to install the driver. After you have finished it, quoting me again. Manos-_-P changed the answer from "No" to "Yes". Therefore he does not need probably to install the driver because the Ubuntu installer have already installed the driver automatically.
×