mirror of
				https://github.com/Burnett01/rsync-deployments.git
				synced 2025-11-04 09:29:04 +01:00 
			
		
		
		
	chore: adjust troubleshooting section for missing rsync on remote host (#86)
* Adjust troubleshooting section for missing rsync on remote host Co-authored-by: Burnett01 <1208707+Burnett01@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Burnett01 <1208707+Burnett01@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									f1607ccbba
								
							
						
					
					
						commit
						78cbabbd5c
					
				
					 1 changed files with 21 additions and 0 deletions
				
			
		
							
								
								
									
										21
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								README.md
									
									
									
									
									
								
							| 
						 | 
				
			
			@ -238,6 +238,27 @@ More advanced examples:
 | 
			
		|||
- https://github.com/Burnett01/rsync-deployments/issues/71
 | 
			
		||||
- https://github.com/Burnett01/rsync-deployments/issues/52
 | 
			
		||||
 | 
			
		||||
### Missing rsync on Remote Host
 | 
			
		||||
 | 
			
		||||
If the action fails with "rsync: command not found" or similar errors, rsync is not installed on your remote server. Install it using your system's package manager:
 | 
			
		||||
 | 
			
		||||
**Ubuntu/Debian:**
 | 
			
		||||
```bash
 | 
			
		||||
sudo apt-get update && sudo apt-get install rsync
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
**CentOS/RHEL/Rocky/AlmaLinux:**
 | 
			
		||||
```bash
 | 
			
		||||
sudo yum install rsync
 | 
			
		||||
# OR on newer versions:
 | 
			
		||||
sudo dnf install rsync
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
**Alpine Linux:**
 | 
			
		||||
```bash
 | 
			
		||||
sudo apk add rsync
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
## Versions
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue