LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-06-2023, 08:27 PM   #1
sthypc
LQ Newbie
 
Registered: Apr 2023
Posts: 5

Rep: Reputation: 0
Exclamation [Arch Linux] Issue with a file: (install.log), from the HyprV2 desktop environment by user "SolDoesTech" on GitHub.


Hello Linux community,

I am new to installing custom desktop environments on Arch Linux, and I want to use the Hyprv2 environment from "SolDoesTech" on GitHub. However, during the installation process after installing the necessary resources and running the command to open the file:

$./set-hypr

to proceed with the installation of the environment, I encounter an error that says:

#[ERROR] hyperland install had failed, please check the install.log.

After this, I proceed to check the file to see if there is any error or issue with:

$nano /etc/install.log

The file opens but appears empty with the message "permission denied."

I have searched different sites for a possible solution but I can't find anything related to this specific problem. Could someone please help me with this issue? I would greatly appreciate any prompt assistance.

User: sthypc
 
Old 04-06-2023, 10:55 PM   #2
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS, Manjaro
Posts: 5,763

Rep: Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764
This is a duplicate post, see https://www.linuxquestions.org/quest...ub-4175723848/
Duplicate posts are not allowed on this site. You should read the rules and guidelines before posting!
There may be a third copy, it is not a new post because you included the same information in a different language.
Welcome to the jungle.
Were I you I would try to close or delete two of the threads, and combine the information in a single thread under ARCH LINUX.
 
Old 04-07-2023, 04:31 AM   #3
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 22,039

Rep: Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347Reputation: 7347
Quote:
Originally Posted by sthypc View Post

$./set-hypr

to proceed with the installation of the environment, I encounter an error that says:

#[ERROR] hyperland install had failed, please check the install.log.

After this, I proceed to check the file to see if there is any error or issue with:

$nano /etc/install.log

The file opens but appears empty with the message "permission denied."
That is probably wrong. The file may contain some info, but you need to read it as root (or another user). permission denied does not mean the file is empty.
 
Old 04-07-2023, 12:17 PM   #4
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,152
Blog Entries: 6

Rep: Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835
To install non repo software on arch linux,

Get the source, see if it will compile and run first. Make a PKGBUILD for it, use makepkg to build it. Then install the software with pacman -U

This?
https://github.com/SolDoesTech/HyprV2

The install script
https://github.com/SolDoesTech/HyprV.../main/set-hypr

Code:
#### Check for yay ####
ISYAY=/sbin/yay
if [ -f "$ISYAY" ]; then 
    echo -e "$COK - yay was located, moving on."
else 
    echo -e "$CWR - Yay was NOT located"
    read -n1 -rep $'[\e[1;33mACTION\e[0m] - Would you like to install yay (y,n) ' INSTYAY
    if [[ $INSTYAY == "Y" || $INSTYAY == "y" ]]; then
        git clone https://aur.archlinux.org/yay-git.git &>> $INSTLOG
        cd yay-git
        makepkg -si --noconfirm &>> ../$INSTLOG
        cd ..
        
    else
        echo -e "$CER - Yay is required for this script, now exiting"
        exit
    fi
fi
I cringe a little when I see new arch users using an automated something to build and install non repo software.

https://wiki.archlinux.org/title/PKGBUILD
https://wiki.archlinux.org/title/Makepkg
https://wiki.archlinux.org/title/Arch_Build_System
https://wiki.archlinux.org/title/Pacman

What pan64 said. If it's in /etc then it'll need root access.
 
1 members found this post helpful.
Old 04-07-2023, 06:03 PM   #5
sthypc
LQ Newbie
 
Registered: Apr 2023
Posts: 5

Original Poster
Rep: Reputation: 0
Thanks that worked and I managed to fix the problem with the "install.log" file.
But when it gave me the option to "start with desktop environment now (y/n)
And I clicked yes, but nothing happened, I figured that maybe it would be fixed by restarting the pc, but when it started the following problem appears:

--sthypc: /home/sthypc: change directory failed: no such file directory.
Logging in with home = "/".

What could I do in this case to solve it? Please.
 
Old 04-08-2023, 12:42 PM   #6
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS, Manjaro
Posts: 5,763

Rep: Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764Reputation: 2764
Quote:
Originally Posted by sthypc View Post
Thanks that worked and I managed to fix the problem with the "install.log" file.
But when it gave me the option to "start with desktop environment now (y/n)
And I clicked yes, but nothing happened, I figured that maybe it would be fixed by restarting the pc, but when it started the following problem appears:

--sthypc: /home/sthypc: change directory failed: no such file directory.
Logging in with home = "/".

What could I do in this case to solve it? Please.
Step one would be to check the existence and permissions of /home/sthypc!
 
Old 04-08-2023, 04:28 PM   #7
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,152
Blog Entries: 6

Rep: Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835Reputation: 1835
That's in the repo. It must be newer. I'm not up to date. I didn't see it.
https://wiki.archlinux.org/title/Hyprland

https://archlinux.org/packages/?name=hyprland
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[Arch Linux] Issue with a file: (install.log), from the HyprV2 desktop environment by user "SolDoesTech" on GitHub. sthypc Arch 3 04-08-2023 05:15 PM
[Arch Linux] Problema con un archivo: (install.log), del entorno de escritorio HyprV2 de usuario "SolDoesTech" de GitHub. sthypc Linux - Newbie 1 04-07-2023 12:50 PM
How do you install thinks on Arch? What is arch for "emerge", "apt-get" etc? just a man Arch 9 01-28-2022 05:48 AM
LXer: Learn to use GitHub with GitHub Learning Lab LXer Syndicated Linux News 0 04-20-2018 01:12 AM
LXer: GitHub wants more new contributors, because that's what GitHub is for LXer Syndicated Linux News 0 07-27-2017 06:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration